diff --git a/CHANGELOG.md b/CHANGELOG.md index 47ce68d..2155dac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.6.0] + ### Changed - Enhanced CLI capabilities with glob patterns and inspection commands @@ -68,7 +70,8 @@ All notable changes to this project will be documented in this file. - Initial release -[Unreleased]: https://github.com/mikesposito/secured/compare/secured@0.5.1...HEAD +[Unreleased]: https://github.com/mikesposito/secured/compare/secured@0.6.0...HEAD +[0.6.0]: https://github.com/mikesposito/secured/compare/secured@0.5.1...secured@0.6.0 [0.5.1]: https://github.com/mikesposito/secured/compare/secured@0.5.0...secured@0.5.1 [0.5.0]: https://github.com/mikesposito/secured/compare/secured@0.4.0...secured@0.5.0 [0.4.0]: https://github.com/mikesposito/secured/compare/secured@0.3.0...secured@0.4.0 diff --git a/Cargo.lock b/Cargo.lock index c2d31bd..8a28be5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -680,7 +680,7 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "secured" -version = "0.5.1" +version = "0.6.0" dependencies = [ "clap", "glob", @@ -693,7 +693,7 @@ dependencies = [ [[package]] name = "secured-cipher" -version = "0.4.0" +version = "0.4.1" dependencies = [ "rayon", "secured-cipher-key", @@ -701,7 +701,7 @@ dependencies = [ [[package]] name = "secured-cipher-key" -version = "0.2.0" +version = "0.3.0" dependencies = [ "hmac", "pbkdf2", @@ -711,7 +711,7 @@ dependencies = [ [[package]] name = "secured-enclave" -version = "0.5.1" +version = "0.6.0" dependencies = [ "secured-cipher", ] diff --git a/Cargo.toml b/Cargo.toml index 0a48a3f..1b85d37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secured" -version = "0.5.1" +version = "0.6.0" edition = "2021" authors = ["mikesposito"] license = "MIT" @@ -14,12 +14,12 @@ members = ["enclave", "cipher", "cipher/key", "benches"] [dependencies.enclave] package = "secured-enclave" path = "enclave" -version = "0.5.1" +version = "0.6.0" [dependencies.cipher] package = "secured-cipher" path = "cipher" -version = "0.4.0" +version = "0.4.1" [dependencies.clap] version = "^4.0.0" diff --git a/cipher/Cargo.toml b/cipher/Cargo.toml index 222cc77..8bf2028 100644 --- a/cipher/Cargo.toml +++ b/cipher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secured-cipher" -version = "0.4.0" +version = "0.4.1" authors = ["mikesposito"] repository = "https://github.com/mikesposito/secured/" edition = "2021" @@ -10,7 +10,7 @@ description = "Pure Rust implementation of the ChaCha cipher family" [dependencies.secured-cipher-key] package = "secured-cipher-key" path = "./key" -version = "0.2.0" +version = "0.3.0" [dependencies.rayon] version = "1.8.0" diff --git a/cipher/key/Cargo.toml b/cipher/key/Cargo.toml index e7a2b4d..cdd1017 100644 --- a/cipher/key/Cargo.toml +++ b/cipher/key/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secured-cipher-key" -version = "0.2.0" +version = "0.3.0" authors = ["mikesposito"] edition = "2021" license = "MIT" diff --git a/enclave/Cargo.toml b/enclave/Cargo.toml index d944d95..cbdf1ef 100644 --- a/enclave/Cargo.toml +++ b/enclave/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secured-enclave" -version = "0.5.1" +version = "0.6.0" authors = ["mikesposito"] edition = "2021" license = "MIT" @@ -8,5 +8,5 @@ repository = "https://github.com/mikesposito/secured/" description = "Ergonomic library for secure encryption and decryption of data in Rust." [dependencies.secured-cipher] -version = "0.4.0" +version = "0.4.1" path = "../cipher"