Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesposito committed Dec 19, 2023
1 parent 5afdccc commit 646e53b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 13 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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/[email protected]
[Unreleased]: https://github.com/mikesposito/secured/compare/[email protected]
[0.6.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.6.0
[0.5.1]: https://github.com/mikesposito/secured/compare/[email protected]@0.5.1
[0.5.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.5.0
[0.4.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.4.0
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secured"
version = "0.5.1"
version = "0.6.0"
edition = "2021"
authors = ["mikesposito"]
license = "MIT"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cipher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
2 changes: 1 addition & 1 deletion cipher/key/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secured-cipher-key"
version = "0.2.0"
version = "0.3.0"
authors = ["mikesposito"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions enclave/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "secured-enclave"
version = "0.5.1"
version = "0.6.0"
authors = ["mikesposito"]
edition = "2021"
license = "MIT"
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"

0 comments on commit 646e53b

Please sign in to comment.