Skip to content

Commit

Permalink
0.5.1 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesposito authored Dec 18, 2023
1 parent 1846f4b commit eaa89e8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 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.5.1]

### Added
- `process_in_line` to `AlgorithmProcessInLine` trait

Expand Down Expand Up @@ -63,7 +65,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.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
[0.3.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.3.0
Expand Down
6 changes: 3 additions & 3 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.0"
version = "0.5.1"
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.0"
version = "0.5.1"

[dependencies.cipher]
package = "secured-cipher"
path = "cipher"
version = "0.3.1"
version = "0.4.0"

[dependencies.clap]
version = "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion cipher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secured-cipher"
version = "0.3.1"
version = "0.4.0"
authors = ["mikesposito"]
repository = "https://github.com/mikesposito/secured/"
edition = "2021"
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.0"
version = "0.5.1"
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.3.1"
version = "0.4.0"
path = "../cipher"

0 comments on commit eaa89e8

Please sign in to comment.