Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
franziskuskiefer committed Nov 21, 2023
1 parent 89559ab commit eff7733
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.2] - 2023-11-21

- Updated TLS codec dependency
- [#44](https://github.com/franziskuskiefer/hpke-rs/pull/44): implement std::error::Error for HpkeError

## [0.1.1] - 2023-06-22

### Changed
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpke-rs"
version = "0.1.2-pre.4"
version = "0.1.2"
authors = ["Franziskus Kiefer <franziskuskiefer@gmail.com>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -13,9 +13,9 @@ repository = "https://github.com/franziskuskiefer/hpke-rs"
log = "0.4"
serde_json = { version = "1.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
tls_codec = { version = "0.4.0-pre.4", features = ["derive"], optional = true }
tls_codec = { version = "0.4.0", features = ["derive"], optional = true }
zeroize = { version = "1.5", features = ["zeroize_derive"] }
hpke-rs-crypto = { version = "0.1.3-pre.4", path = "./traits" }
hpke-rs-crypto = { version = "0.1.3", path = "./traits" }

[features]
default = []
Expand All @@ -30,7 +30,7 @@ serde = { version = "1.0", features = ["derive"] }
lazy_static = "1.4"
rayon = "1.5"
hpke-rs = { path = ".", features = ["hpke-test", "hazmat"] }
hpke-rs-rust-crypto = { version = "0.1.3-pre.4", path = "./rust_crypto_provider", features = [
hpke-rs-rust-crypto = { version = "0.1.3", path = "./rust_crypto_provider", features = [
"deterministic-prng",
] }
# hpke-rs-evercrypt = { version = "0.1.3-pre.1", path = "./evercrypt_provider", features = ["deterministic-prng"] }
Expand Down
4 changes: 2 additions & 2 deletions rust_crypto_provider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpke-rs-rust-crypto"
version = "0.1.3-pre.4"
version = "0.1.3"
authors = ["Franziskus Kiefer <franziskuskiefer@gmail.com>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -10,7 +10,7 @@ readme = "Readme.md"
repository = "https://github.com/franziskuskiefer/hpke-rs"

[dependencies]
hpke-rs-crypto = { version = "0.1.3-pre.4", path = "../traits" }
hpke-rs-crypto = { version = "0.1.3", path = "../traits" }
# Rust crypto
hkdf = { version = "0.12" }
sha2 = { version = "0.10" }
Expand Down
4 changes: 2 additions & 2 deletions traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpke-rs-crypto"
version = "0.1.3-pre.4"
version = "0.1.3"
authors = ["Franziskus Kiefer <franziskuskiefer@gmail.com>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -14,4 +14,4 @@ serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
rand = { version = "0.8" }
getrandom = { version = "0.2", features = ["js"] }
tls_codec = { version = "0.4.0-pre.4", features = ["derive"] }
tls_codec = { version = "0.4.0", features = ["derive"] }

0 comments on commit eff7733

Please sign in to comment.