Skip to content

Commit cea7bcf

Browse files
authored
0.6.0 (#31)
1 parent 5afdccc commit cea7bcf

File tree

6 files changed

+16
-13
lines changed

6 files changed

+16
-13
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.6.0]
8+
79
### Changed
810
- Enhanced CLI capabilities with glob patterns and inspection commands
911

@@ -68,7 +70,8 @@ All notable changes to this project will be documented in this file.
6870

6971
- Initial release
7072

71-
[Unreleased]: https://github.com/mikesposito/secured/compare/[email protected]
73+
[Unreleased]: https://github.com/mikesposito/secured/compare/[email protected]
74+
[0.6.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.6.0
7275
[0.5.1]: https://github.com/mikesposito/secured/compare/[email protected]@0.5.1
7376
[0.5.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.5.0
7477
[0.4.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.4.0

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secured"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2021"
55
authors = ["mikesposito"]
66
license = "MIT"
@@ -14,12 +14,12 @@ members = ["enclave", "cipher", "cipher/key", "benches"]
1414
[dependencies.enclave]
1515
package = "secured-enclave"
1616
path = "enclave"
17-
version = "0.5.1"
17+
version = "0.6.0"
1818

1919
[dependencies.cipher]
2020
package = "secured-cipher"
2121
path = "cipher"
22-
version = "0.4.0"
22+
version = "0.4.1"
2323

2424
[dependencies.clap]
2525
version = "^4.0.0"

cipher/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secured-cipher"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["mikesposito"]
55
repository = "https://github.com/mikesposito/secured/"
66
edition = "2021"
@@ -10,7 +10,7 @@ description = "Pure Rust implementation of the ChaCha cipher family"
1010
[dependencies.secured-cipher-key]
1111
package = "secured-cipher-key"
1212
path = "./key"
13-
version = "0.2.0"
13+
version = "0.3.0"
1414

1515
[dependencies.rayon]
1616
version = "1.8.0"

cipher/key/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secured-cipher-key"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["mikesposito"]
55
edition = "2021"
66
license = "MIT"

enclave/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "secured-enclave"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["mikesposito"]
55
edition = "2021"
66
license = "MIT"
77
repository = "https://github.com/mikesposito/secured/"
88
description = "Ergonomic library for secure encryption and decryption of data in Rust."
99

1010
[dependencies.secured-cipher]
11-
version = "0.4.0"
11+
version = "0.4.1"
1212
path = "../cipher"

0 commit comments

Comments
 (0)