Skip to content

Commit eaa89e8

Browse files
authored
0.5.1 (#25)
1 parent 1846f4b commit eaa89e8

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
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.5.1]
8+
79
### Added
810
- `process_in_line` to `AlgorithmProcessInLine` trait
911

@@ -63,7 +65,8 @@ All notable changes to this project will be documented in this file.
6365

6466
- Initial release
6567

66-
[Unreleased]: https://github.com/mikesposito/secured/compare/[email protected]
68+
[Unreleased]: https://github.com/mikesposito/secured/compare/[email protected]
69+
[0.5.1]: https://github.com/mikesposito/secured/compare/[email protected]@0.5.1
6770
[0.5.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.5.0
6871
[0.4.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.4.0
6972
[0.3.0]: https://github.com/mikesposito/secured/compare/[email protected]@0.3.0

Cargo.lock

Lines changed: 3 additions & 3 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.0"
3+
version = "0.5.1"
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.0"
17+
version = "0.5.1"
1818

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

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

cipher/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"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
authors = ["mikesposito"]
55
repository = "https://github.com/mikesposito/secured/"
66
edition = "2021"

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.0"
3+
version = "0.5.1"
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.3.1"
11+
version = "0.4.0"
1212
path = "../cipher"

0 commit comments

Comments
 (0)