Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: release v0.12.0 #287

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.12.0 - 2024-12-17

### Documentation

- update documentation for how to run the Haskell FFI tests (92184e1)
- README.md: just push the relevant tag (286a0f7)

### Testing

- e2e-identity: increase the validity period of the intermediate CA cert (69a414c)

## v0.11.0 - 2024-10-18

### Highlights
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions acme/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rusty-acme"
description = "ACME types"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand All @@ -11,8 +11,8 @@ publish = false
crate-type = ["cdylib", "rlib"]

[dependencies]
rusty-jwt-tools = { version = "0.11.0", path = "../jwt" }
rusty-x509-check = { version = "0.11.0", path = "../x509-check" }
rusty-jwt-tools = { version = "0.12.0", path = "../jwt" }
rusty-x509-check = { version = "0.12.0", path = "../x509-check" }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
Expand All @@ -34,6 +34,6 @@ web-time = { workspace = true }
hex = { workspace = true }

[dev-dependencies]
rusty-jwt-tools = { version = "0.11.0", path = "../jwt", features = ["test-utils"] }
rusty-jwt-tools = { version = "0.12.0", path = "../jwt", features = ["test-utils"] }
wasm-bindgen-test = { workspace = true }
hex = { workspace = true }
10 changes: 5 additions & 5 deletions e2e-identity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wire-e2e-identity"
description = "Public API for Wire end to end identity"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand All @@ -11,8 +11,8 @@ publish = false
crate-type = ["cdylib", "rlib"]

[dependencies]
rusty-acme = { version = "0.11.0", path = "../acme" }
rusty-jwt-tools = { version = "0.11.0", path = "../jwt" }
rusty-acme = { version = "0.12.0", path = "../acme" }
rusty-jwt-tools = { version = "0.12.0", path = "../jwt" }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
Expand All @@ -29,8 +29,8 @@ ed25519-dalek = { workspace = true, optional = true }
signature = { workspace = true, optional = true }

[dev-dependencies]
wire-e2e-identity = { version = "0.11.0", path = ".", features = ["builder"] }
rusty-jwt-tools = { version = "0.11.0", path = "../jwt", features = ["test-utils", "rsa"] }
wire-e2e-identity = { version = "0.12.0", path = ".", features = ["builder"] }
rusty-jwt-tools = { version = "0.12.0", path = "../jwt", features = ["test-utils", "rsa"] }
base64 = { workspace = true }
url = { workspace = true }
itertools = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rusty-jwt-tools-ffi"
description = "Exposing utilities to handle JWTs in Haskell"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand All @@ -12,5 +12,5 @@ name = "rusty_jwt_tools_ffi"
crate-type = ["cdylib", "staticlib"]

[dependencies]
rusty-jwt-tools = { version = "0.11.0", path = "../jwt" }
rusty-jwt-tools = { version = "0.12.0", path = "../jwt" }
uuid = { workspace = true }
2 changes: 1 addition & 1 deletion jwt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rusty-jwt-tools"
description = "Utilities to handle JWTs"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion x509-check/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rusty-x509-check"
description = "Utilities to assert a X.509 certificate's validity and revocation status"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
repository = "https://github.com/wireapp/rusty-jwt-tools"
license = "MPL-2.0"
Expand Down
Loading