Skip to content

Commit 2b5cec4

Browse files
pavex-releaser[bot]LukeMathWalker
authored andcommitted
chore: release v0.1.76
1 parent 9e859e6 commit 2b5cec4

File tree

17 files changed

+69
-57
lines changed

17 files changed

+69
-57
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.76](https://github.com/LukeMathWalker/pavex/compare/0.1.75...0.1.76) - 2025-02-24
11+
12+
13+
### ⛰️ Features
14+
- Bump nightly version used by pavexc to generate JSON docs from 'nightly-2025-01-04' to 'nightly-2025-02-22' (by @LukeMathWalker) - #454
15+
- Use Rust 2024 edition in the generated server SDK as well as in the starter project generated by 'pavex new' (by @LukeMathWalker) - #454
16+
17+
18+
### Contributors
19+
20+
* @LukeMathWalker
21+
1022
## [0.1.75](https://github.com/LukeMathWalker/pavex/compare/0.1.74...0.1.75) - 2025-02-23
1123

1224
### 🐛 Bug Fixes

libs/Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2024"
1212
repository = "https://github.com/LukeMathWalker/pavex"
1313
homepage = "https://pavex.dev"
1414
license = "Apache-2.0"
15-
version = "0.1.75"
15+
version = "0.1.76"
1616

1717
[workspace.dependencies]
1818
vergen-gitcl = { version = "1.0.5", features = ["build"] }

libs/pavex/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ futures-util = { workspace = true }
3333
mime = { workspace = true }
3434
thiserror = { workspace = true }
3535
serde = { workspace = true, features = ["derive"] }
36-
pavex_macros = { path = "../pavex_macros", version = "0.1.75" }
36+
pavex_macros = { path = "../pavex_macros", version = "0.1.76" }
3737
paste = { workspace = true }
3838
tracing = { workspace = true }
3939
http-body-util = { workspace = true }
4040
pin-project-lite = { workspace = true }
4141
ubyte = { workspace = true, features = ["serde"] }
42-
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.75" }
43-
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.75" }
44-
persist_if_changed = { path = "../persist_if_changed", version = "0.1.75" }
42+
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.76" }
43+
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.76" }
44+
persist_if_changed = { path = "../persist_if_changed", version = "0.1.76" }
4545

4646
# Route parameters
4747
matchit = { workspace = true }

libs/pavex_bp_schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ license.workspace = true
99

1010
[dependencies]
1111
serde = { workspace = true, features = ["derive"] }
12-
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.75" }
12+
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.76" }

libs/pavex_cli/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ vergen-gitcl = { workspace = true }
2020
anyhow = { workspace = true }
2121

2222
[dependencies]
23-
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.75" }
24-
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.1.75" }
25-
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.75" }
26-
pavex_cli_flock = { path = "../pavex_cli_flock", version = "0.1.75" }
27-
pavex_cli_diagnostic = { path = "../pavex_cli_diagnostic", version = "0.1.75" }
28-
pavex_miette = { path = "../pavex_miette", version = "0.1.75" }
23+
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.76" }
24+
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.1.76" }
25+
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.76" }
26+
pavex_cli_flock = { path = "../pavex_cli_flock", version = "0.1.76" }
27+
pavex_cli_diagnostic = { path = "../pavex_cli_diagnostic", version = "0.1.76" }
28+
pavex_miette = { path = "../pavex_miette", version = "0.1.76" }
2929
tracing_log_error = { workspace = true }
3030
async-trait = { workspace = true }
3131
http = { workspace = true }

libs/pavex_cli_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ license.workspace = true
99

1010
[dependencies]
1111
anyhow = { workspace = true }
12-
pavex = { path = "../pavex", version = "0.1.75" }
12+
pavex = { path = "../pavex", version = "0.1.76" }
1313
thiserror = { workspace = true }

libs/pavex_cli_deps/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version.workspace = true
99

1010
[dependencies]
1111
anyhow = { workspace = true }
12-
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.75" }
12+
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.76" }
1313
cargo-like-utils = { workspace = true }
1414
thiserror = { workspace = true }
1515
miette = { workspace = true }

libs/pavex_cli_flock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version.workspace = true
99

1010
[dependencies]
1111
anyhow = { workspace = true }
12-
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.75" }
12+
pavex_cli_shell = { path = "../pavex_cli_shell", version = "0.1.76" }
1313
tracing = { workspace = true }
1414
libc = { workspace = true }
1515
fs-err = { workspace = true }

libs/pavex_session/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ repository.workspace = true
88
license.workspace = true
99

1010
[dependencies]
11-
pavex = { version = "0.1.75", path = "../pavex", default-features = false, features = [
11+
pavex = { version = "0.1.76", path = "../pavex", default-features = false, features = [
1212
"cookie",
1313
] }
14-
pavex_tracing = { version = "0.1.75", path = "../pavex_tracing" }
14+
pavex_tracing = { version = "0.1.76", path = "../pavex_tracing" }
1515
serde = { workspace = true, features = ["derive"] }
1616
serde_json = { workspace = true }
1717
anyhow = { workspace = true }

0 commit comments

Comments
 (0)