Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
neoeinstein committed May 21, 2024
1 parent d958e99 commit fdf3726
Show file tree
Hide file tree
Showing 16 changed files with 82 additions and 31 deletions.
16 changes: 8 additions & 8 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"aliri": "0.6.3",
"aliri_actix": "0.9.1",
"aliri_axum": "0.4.0",
"aliri": "0.6.4",
"aliri_actix": "0.9.2",
"aliri_axum": "0.4.1",
"aliri_base64": "0.1.8",
"aliri_clock": "0.1.4",
"aliri_marcos": "0.1.2",
"aliri_oauth2": "0.10.1",
"aliri_reqwest": "0.5.0",
"aliri_tokens": "0.3.1",
"aliri_tower": "0.6.0",
"aliri_oauth2": "0.10.2",
"aliri_reqwest": "0.5.1",
"aliri_tokens": "0.3.2",
"aliri_tower": "0.6.1",
"aliri_traits": "0.1.1",
"aliri_warp": "0.9.0"
"aliri_warp": "0.9.1"
}
7 changes: 7 additions & 0 deletions aliri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.6.4](https://github.com/neoeinstein/aliri/compare/aliri-v0.6.3...aliri-v0.6.4) (2024-05-21)


### Bug Fixes

* **aliri_tokens:** use mode on unix only ([#100](https://github.com/neoeinstein/aliri/issues/100)) ([b73896b](https://github.com/neoeinstein/aliri/commit/b73896bcd5126572943896d0352ca067a30663c3))

## [0.6.3](https://github.com/neoeinstein/aliri/compare/aliri-v0.6.2...aliri-v0.6.3) (2024-04-12)


Expand Down
2 changes: 1 addition & 1 deletion aliri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aliri"
description = "Implementations of the Javascript/JSON Object Signing and Encryption (JOSE) standards"
keywords = [ "jwk", "jwa", "jose", "jwt", "auth" ]
categories = [ "authentication" ]
version = "0.6.3"
version = "0.6.4"
authors = ["Marcus Griep <marcus@griep.us>"]
edition = "2018"
readme = "../README.md"
Expand Down
7 changes: 7 additions & 0 deletions aliri_actix/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* aliri bumped from 0.6.0 to 0.6.4
* aliri_oauth2 bumped from 0.10.0 to 0.10.2
* dev-dependencies
* aliri_oauth2 bumped from 0.10.0 to 0.10.2

## [0.9.1](https://github.com/neoeinstein/aliri/compare/aliri_actix-v0.9.0...aliri_actix-v0.9.1) (2024-04-12)


Expand Down
8 changes: 4 additions & 4 deletions aliri_actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aliri_actix"
description = "Actix for interacting with `aliri` authorities"
keywords = [ "actix", "jose", "jwt", "oauth2", "auth" ]
categories = [ "authentication", "web-programming", "web-programming::http-server" ]
version = "0.9.1"
version = "0.9.2"
authors = ["Marcus Griep <marcus@griep.us>"]
edition = "2018"
readme = "../README.md"
Expand All @@ -14,9 +14,9 @@ repository = "https://github.com/neoeinstein/aliri"

[dependencies]
actix-web = { version = "4", default-features = false }
aliri = { version = "0.6.0", path = "../aliri" }
aliri = { version = "0.6.4", path = "../aliri" }
aliri_traits = { version = "0.1.0", path = "../aliri_traits" }
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2" }
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2" }
futures = "0.3"
once_cell = "1.19"
serde = { version = "1", features = [ "derive" ] }
Expand All @@ -28,7 +28,7 @@ actix-rt = "2"
actix-web = { version = "4", default-features = false, features = ["macros"] }
aliri_base64 = { version = "0.1.0", path = "../aliri_base64" }
aliri_clock = { version = "0.1.0", path = "../aliri_clock" }
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = [ "reqwest" ] }
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = [ "reqwest" ] }
color-eyre = "0.6"
regex = "1"
serde_json = "1"
Expand Down
8 changes: 8 additions & 0 deletions aliri_axum/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* aliri bumped from 0.6.0 to 0.6.4
* aliri_oauth2 bumped from 0.10.0 to 0.10.2
* dev-dependencies
* aliri_oauth2 bumped from 0.10.0 to 0.10.2
* aliri_tower bumped from 0.6.0 to 0.6.1

## [0.4.0](https://github.com/neoeinstein/aliri/compare/aliri_axum-v0.3.0...aliri_axum-v0.4.0) (2024-04-12)


Expand Down
10 changes: 5 additions & 5 deletions aliri_axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aliri_axum"
description = "Axum for interacting with `aliri` authorities"
keywords = [ "axum", "jose", "jwt", "oauth2", "auth" ]
categories = [ "authentication", "web-programming", "web-programming::http-server" ]
version = "0.4.0"
version = "0.4.1"
authors = ["Marcus Griep <marcus@griep.us>"]
edition = "2021"
readme = "../README.md"
Expand All @@ -13,8 +13,8 @@ repository = "https://github.com/neoeinstein/aliri"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aliri = { version = "0.6.0", path = "../aliri", default-features = false }
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", default-features = false }
aliri = { version = "0.6.4", path = "../aliri", default-features = false }
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", default-features = false }
aliri_traits = { version = "0.1.1", path = "../aliri_traits" }
axum-core = "0.4.3"
http = "1.1.0"
Expand All @@ -24,8 +24,8 @@ once_cell = "1"
aliri_base64 = { version = "0.1.5", path = "../aliri_base64" }
aliri_braid = "0.4.0"
aliri_clock = { version = "0.1.4", path = "../aliri_clock" }
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = ["rsa", "tokio", "reqwest"] }
aliri_tower = { version = "0.6.0", path = "../aliri_tower" }
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = ["rsa", "tokio", "reqwest"] }
aliri_tower = { version = "0.6.1", path = "../aliri_tower" }
axum = { version = "0.7.5", default-features = false, features = ["tokio", "http1", "http2"] }
color-eyre = "0.6.3"
reqwest = "0.12.3"
Expand Down
6 changes: 6 additions & 0 deletions aliri_oauth2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* aliri bumped from 0.6.1 to 0.6.4
* dev-dependencies
* aliri bumped from 0.6.0 to 0.6.4

## [0.10.1](https://github.com/neoeinstein/aliri/compare/aliri_oauth2-v0.10.0...aliri_oauth2-v0.10.1) (2024-04-12)


Expand Down
6 changes: 3 additions & 3 deletions aliri_oauth2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aliri_oauth2"
description = "JWT authorization based on validating OAuth2 scopes"
keywords = [ "jose", "jwk", "jwt", "oauth2", "auth" ]
categories = [ "authentication" ]
version = "0.10.1"
version = "0.10.2"
authors = ["Marcus Griep <marcus@griep.us>"]
edition = "2018"
readme = "../README.md"
Expand All @@ -24,7 +24,7 @@ rustc-args = ["--cfg", "docsrs"]
features = [ "rsa", "ec", "hmac", "private-keys", "reqwest" ]

[dependencies]
aliri = { version = "0.6.1", path = "../aliri", default-features = false }
aliri = { version = "0.6.4", path = "../aliri", default-features = false }
aliri_clock = { version = "0.1.0", path = "../aliri_clock" }
aliri_traits = { version = "0.1.0", path = "../aliri_traits" }
aliri_braid = { version = "0.4.0" }
Expand All @@ -37,7 +37,7 @@ tokio = { version = "1", features = [ "time" ], optional = true }
tracing = "0.1.40"

[dev-dependencies]
aliri = { version = "0.6.0", path = "../aliri", features = [ "private-keys" ] }
aliri = { version = "0.6.4", path = "../aliri", features = [ "private-keys" ] }
openssl = "0.10"
serde_json = "1"
tokio = { version = "1", features = [ "rt-multi-thread", "macros" ] }
Expand Down
4 changes: 4 additions & 0 deletions aliri_reqwest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* aliri_tokens bumped from 0.3.0 to 0.3.2

## [0.5.0](https://github.com/neoeinstein/aliri/compare/aliri_reqwest-v0.4.1...aliri_reqwest-v0.5.0) (2024-04-12)


Expand Down
4 changes: 2 additions & 2 deletions aliri_reqwest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aliri_reqwest"
description = "Background token management and renewal for reqwest based on best practices"
keywords = [ "reqwest", "jwt", "oauth2", "auth" ]
categories = [ "authentication" ]
version = "0.5.0"
version = "0.5.1"
authors = ["Marcus Griep <marcus@griep.us>"]
edition = "2021"
readme = "../README.md"
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/neoeinstein/aliri"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aliri_tokens = { version = "0.3.0", path = "../aliri_tokens" }
aliri_tokens = { version = "0.3.2", path = "../aliri_tokens" }
aliri_clock = { version = "0.1.4", path = "../aliri_clock" }
async-trait = "0.1.79"
bytes = "1.6.0"
Expand Down
14 changes: 14 additions & 0 deletions aliri_tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.3.2](https://github.com/neoeinstein/aliri/compare/aliri_tokens-v0.3.1...aliri_tokens-v0.3.2) (2024-05-21)


### Bug Fixes

* **aliri_tokens:** use mode on unix only ([#100](https://github.com/neoeinstein/aliri/issues/100)) ([b73896b](https://github.com/neoeinstein/aliri/commit/b73896bcd5126572943896d0352ca067a30663c3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* aliri bumped from 0.6.0 to 0.6.4

## [0.3.1](https://github.com/neoeinstein/aliri/compare/aliri_tokens-v0.3.0...aliri_tokens-v0.3.1) (2024-04-12)


Expand Down
4 changes: 2 additions & 2 deletions aliri_tokens/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aliri_tokens"
description = "Background token management and renewal based on best practices"
keywords = [ "jwt", "oauth2", "auth" ]
categories = [ "authentication" ]
version = "0.3.1"
version = "0.3.2"
authors = ["Marcus Griep <marcus@griep.us>"]
edition = "2018"
readme = "../README.md"
Expand All @@ -21,7 +21,7 @@ oauth2 = ["reqwest"]
rustc-args = ["--cfg", "docsrs"]

[dependencies]
aliri = { version = "0.6.0", path = "../aliri" }
aliri = { version = "0.6.4", path = "../aliri" }
aliri_braid = "0.4.0"
aliri_clock = { version = "0.1.4", path = "../aliri_clock" }
async-trait = "0.1.79"
Expand Down
5 changes: 5 additions & 0 deletions aliri_tower/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* aliri bumped from 0.6.0 to 0.6.4
* aliri_oauth2 bumped from 0.10.0 to 0.10.2

## [0.6.0](https://github.com/neoeinstein/aliri/compare/aliri_tower-v0.5.0...aliri_tower-v0.6.0) (2024-04-12)


Expand Down
6 changes: 3 additions & 3 deletions aliri_tower/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aliri_tower"
description = "Tower middleware for interacting with `aliri` authorities"
keywords = [ "tower", "jose", "jwt", "oauth2", "auth" ]
categories = [ "authentication", "web-programming", "web-programming::http-server" ]
version = "0.6.0"
version = "0.6.1"
authors = ["Marcus Griep <marcus@griep.us>"]
edition = "2021"
readme = "../README.md"
Expand All @@ -13,9 +13,9 @@ repository = "https://github.com/neoeinstein/aliri"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aliri = { version = "0.6.0", path = "../aliri" }
aliri = { version = "0.6.4", path = "../aliri" }
aliri_traits = { version = "0.1.1", path = "../aliri_traits" }
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = [ "reqwest" ] }
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = [ "reqwest" ] }
bytes = "1.6.0"
http = "1.1"
http-body = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions aliri_warp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aliri_warp"
description = "Warp filters for interacting with `aliri` authorities"
keywords = [ "warp", "jose", "jwt", "oauth2", "auth" ]
categories = [ "authentication", "web-programming", "web-programming::http-server" ]
version = "0.9.0"
version = "0.9.1"
authors = ["Marcus Griep <marcus@griep.us>"]
edition = "2018"
readme = "../README.md"
Expand All @@ -13,8 +13,8 @@ repository = "https://github.com/neoeinstein/aliri"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aliri = { version = "0.6.0", path = "../aliri" }
aliri_oauth2 = { version = "0.10.0", path = "../aliri_oauth2", features = [ "reqwest" ] }
aliri = { version = "0.6.4", path = "../aliri" }
aliri_oauth2 = { version = "0.10.2", path = "../aliri_oauth2", features = [ "reqwest" ] }
serde = { version = "1", features = [ "derive" ] }
thiserror = "1"
tracing = "0.1"
Expand Down

0 comments on commit fdf3726

Please sign in to comment.