Skip to content

Commit

Permalink
chore: release (#278)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `pavex`: 0.1.33 -> 0.1.34
* `pavex_bp_schema`: 0.1.33 -> 0.1.34
* `pavex_reflection`: 0.1.33 -> 0.1.34
* `pavex_macros`: 0.1.33 -> 0.1.34
* `persist_if_changed`: 0.1.33 -> 0.1.34
* `pavex_tracing`: 0.1.33 -> 0.1.34
* `pavex_cli`: 0.1.33 -> 0.1.34
* `pavex_miette`: 0.1.33 -> 0.1.34
* `pavexc_cli_client`: 0.1.33 -> 0.1.34
* `pavexc`: 0.1.33 -> 0.1.34
* `pavex_cli_client`: 0.1.33 -> 0.1.34
* `pavexc_cli`: 0.1.33 -> 0.1.34
* `generate_from_path`: 0.1.33 -> 0.1.34

<details><summary><i><b>Changelog</b></i></summary><p>

## `pavex`
<blockquote>

##
[0.1.34](0.1.33...0.1.34)
- 2024-04-25

### Other
- Use Unix path separator in Cargo.toml manifests when specifying path
dependencies ([#275](#275))
- Re-order Cargo.toml file
([#277](#277))
- Re-add default .env file
([#276](#276))
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).

---------

Co-authored-by: pavex-releaser[bot] <167640712+pavex-releaser[bot]@users.noreply.github.com>
Co-authored-by: Luca Palmieri <[email protected]>
  • Loading branch information
pavex-releaser[bot] and LukeMathWalker authored Apr 25, 2024
1 parent 7f560bb commit 124fbe6
Show file tree
Hide file tree
Showing 13 changed files with 43 additions and 33 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.34](https://github.com/LukeMathWalker/pavex/compare/0.1.33...0.1.34) - 2024-04-25

### Fixes
- Use Unix path separator in Cargo.toml manifests when specifying path dependencies ([#275](https://github.com/LukeMathWalker/pavex/pull/275))
It allows the same Pavex project to be built on all platforms with no changes.
- Re-add default .env file ([#276](https://github.com/LukeMathWalker/pavex/pull/276))
It allows `cargo px r` to "just work" on a newly scaffolded Pavex project.

### Other
- Re-order Cargo.toml file ([#277](https://github.com/LukeMathWalker/pavex/pull/277))

## [0.1.33](https://github.com/LukeMathWalker/pavex/compare/0.1.32...0.1.33) - 2024-04-21

### Added
Expand Down
28 changes: 14 additions & 14 deletions libs/Cargo.lock

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

2 changes: 1 addition & 1 deletion libs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
repository = "https://github.com/LukeMathWalker/pavex"
homepage = "https://pavex.dev"
license = "Apache-2.0"
version = "0.1.33"
version = "0.1.34"

[workspace.dependencies]
vergen = { version = "8.0.0", features = ["build", "git", "gitcl"] }
Expand Down
8 changes: 4 additions & 4 deletions libs/pavex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ futures-util = "0.3"
mime = "0.3"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
pavex_macros = { path = "../pavex_macros", version = "0.1.33" }
pavex_macros = { path = "../pavex_macros", version = "0.1.34" }
paste = "1"
tracing = "0.1"
http-body-util = "0.1"
pin-project-lite = "0.2"
ubyte = { version = "0.10.4", features = ["serde"] }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.33" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.33" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.33" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.34" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.34" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.34" }

# Route parameters
matchit = { version = "0.7", package = "pavex_matchit" }
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_bp_schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license.workspace = true

[dependencies]
serde = { version = "1", features = ["derive"] }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.33" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.34" }
4 changes: 2 additions & 2 deletions libs/pavex_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ harness = false
vergen = { workspace = true }

[dependencies]
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.33" }
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.34" }
clap = { version = "4", features = ["derive", "env"] }
pavex_miette = { path = "../pavex_miette", version = "0.1.33" }
pavex_miette = { path = "../pavex_miette", version = "0.1.34" }
miette = { version = "6.0.1" }
fs-err = "2.7.0"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_cli_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ license.workspace = true

[dependencies]
anyhow = "1"
pavex = { path = "../pavex", version = "0.1.33" }
pavex = { path = "../pavex", version = "0.1.34" }
thiserror = "1.0.56"
2 changes: 1 addition & 1 deletion libs/pavex_test_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ walkdir = "2"
serde_json = "1"
itertools = "0.12"
sha2 = "0.10.6"
persist_if_changed = { path = "../persist_if_changed", version = "0.1.33" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.34" }
object-pool = "0.5"
num_cpus = "1"
globwalk = "0.9.1"
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ readme = "README.md"

[dependencies]
tracing = { version = "0.1", default-features = false, features = ["std"] }
pavex = { version = "0.1.33", path = "../pavex" }
pavex = { version = "0.1.34", path = "../pavex" }
6 changes: 3 additions & 3 deletions libs/pavexc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ vergen = { version = "8.0.0", features = ["build", "git", "gitcl"] }
debug_assertions = []

[dependencies]
pavex = { path = "../pavex", version = "0.1.33" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "0.1.33" }
pavex = { path = "../pavex", version = "0.1.34" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "0.1.34" }
syn = { version = "2", features = ["full", "extra-traits", "visit"] }
rustdoc-types = "0.24.0"
serde = { version = "1.0.139", features = ["derive"] }
Expand Down Expand Up @@ -48,7 +48,7 @@ textwrap = "0.16.0"
once_cell = "1.17.1"
toml_edit = { version = "0.21", features = ["serde"] }
semver = "1.0.17"
persist_if_changed = { path = "../persist_if_changed", version = "0.1.33" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.34" }
matchit = { version = "0.7", package = "pavex_matchit" }
relative-path = "1.9"

Expand Down
6 changes: 3 additions & 3 deletions libs/pavexc_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive", "env"] }
pavexc = { path = "../pavexc", version = "0.1.33" }
pavex_miette = { path = "../pavex_miette", version = "0.1.33" }
pavexc = { path = "../pavexc", version = "0.1.34" }
pavex_miette = { path = "../pavex_miette", version = "0.1.34" }
miette = { version = "6.0.1" }
fs-err = "2.7.0"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
Expand All @@ -28,7 +28,7 @@ supports-color = { version = "3.0.0" }
include_dir = "0.7.3"
path-absolutize = "3.1.1"
ron = "0.8"
generate_from_path = { path = "../generate_from_path", version = "0.1.33" }
generate_from_path = { path = "../generate_from_path", version = "0.1.34" }
tempfile = "3.9.0"
better-panic = "0.3.0"

Expand Down
1 change: 0 additions & 1 deletion libs/pavexc_cli/template/.env

This file was deleted.

2 changes: 1 addition & 1 deletion libs/pavexc_cli_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ license.workspace = true

[dependencies]
anyhow = "1"
pavex = { path = "../pavex", version = "0.1.33" }
pavex = { path = "../pavex", version = "0.1.34" }
thiserror = "1.0.56"

0 comments on commit 124fbe6

Please sign in to comment.