Skip to content

Commit 560e47a

Browse files
chore: release v0.1.70
1 parent 7d90733 commit 560e47a

File tree

15 files changed

+57
-45
lines changed

15 files changed

+57
-45
lines changed

libs/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.1.70](https://github.com/LukeMathWalker/pavex/compare/0.1.69...0.1.70) - 2025-01-22
10+
11+
### Fixed
12+
13+
- Don't install the current nightly when checking the freshness of a project. Pavex will install the specific nightly version it requires when it initializes
14+
- Use the new install URL in the starter project template (#425)
15+
16+
### Other
17+
18+
- Disable workspace hack before a release
19+
- Re-enable workspace hack after a release ([#423](https://github.com/LukeMathWalker/pavex/pull/423))
20+
921
## [0.1.69](https://github.com/LukeMathWalker/pavex/compare/0.1.68...0.1.69) - 2025-01-21
1022

1123
### Added

libs/Cargo.lock

Lines changed: 19 additions & 19 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 = "2021"
1212
repository = "https://github.com/LukeMathWalker/pavex"
1313
homepage = "https://pavex.dev"
1414
license = "Apache-2.0"
15-
version = "0.1.69"
15+
version = "0.1.70"
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.69" }
36+
pavex_macros = { path = "../pavex_macros", version = "0.1.70" }
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.69" }
43-
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.69" }
44-
persist_if_changed = { path = "../persist_if_changed", version = "0.1.69" }
42+
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.70" }
43+
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.70" }
44+
persist_if_changed = { path = "../persist_if_changed", version = "0.1.70" }
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.69" }
12+
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.70" }

libs/pavex_cli/Cargo.toml

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

2222
[dependencies]
23-
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.69" }
24-
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.1.69" }
25-
pavex_miette = { path = "../pavex_miette", version = "0.1.69" }
23+
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.70" }
24+
pavex_cli_deps = { path = "../pavex_cli_deps", version = "0.1.70" }
25+
pavex_miette = { path = "../pavex_miette", version = "0.1.70" }
2626
tracing_log_error = { workspace = true }
2727
clap = { workspace = true, features = ["derive", "env"] }
2828
miette = { 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.69" }
12+
pavex = { path = "../pavex", version = "0.1.70" }
1313
thiserror = { 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.69", path = "../pavex", default-features = false, features = [
11+
pavex = { version = "0.1.70", path = "../pavex", default-features = false, features = [
1212
"cookie",
1313
] }
14-
pavex_tracing = { version = "0.1.69", path = "../pavex_tracing" }
14+
pavex_tracing = { version = "0.1.70", path = "../pavex_tracing" }
1515
serde = { workspace = true, features = ["derive"] }
1616
serde_json = { workspace = true }
1717
anyhow = { workspace = true }

libs/pavex_session_memory_store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository.workspace = true
88
license.workspace = true
99

1010
[dependencies]
11-
pavex_session = { version = "0.1.69", path = "../pavex_session" }
11+
pavex_session = { version = "0.1.70", path = "../pavex_session" }
1212
time = { workspace = true, features = ["std"] }
1313
serde_json = { workspace = true }
1414
async-trait = { workspace = true }

libs/pavex_session_sqlx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ postgres = ["sqlx/postgres"]
1616
all-features = true
1717

1818
[dependencies]
19-
pavex_session = { version = "0.1.69", path = "../pavex_session" }
19+
pavex_session = { version = "0.1.70", path = "../pavex_session" }
2020
time = { workspace = true, features = ["std"] }
2121
serde_json = { workspace = true }
2222
async-trait = { workspace = true }

0 commit comments

Comments
 (0)