Skip to content

Commit

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

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

## `pavex`
<blockquote>

##
[0.1.36](0.1.35...0.1.36)
- 2024-04-27

### Fixed
- Use the correct name for package names that contain hyphens in the
(generated) server SDK Cargo.toml
([#287](#287))

### Other
- Update dependencies
([#285](#285))
</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 committed Apr 27, 2024
1 parent 78387ca commit c1d30f4
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 34 deletions.
10 changes: 10 additions & 0 deletions libs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.36](https://github.com/LukeMathWalker/pavex/compare/0.1.35...0.1.36) - 2024-04-27

### Fixed
- Use the correct name for package names that contain hyphens in the (generated) server SDK Cargo.toml ([#287](https://github.com/LukeMathWalker/pavex/pull/287))
For example, `sqlx-query` used to be renamed to `sqlx_query` in the generated `Cargo.toml`, causing a `cargo` error.

### Other
- Update dependencies ([#285](https://github.com/LukeMathWalker/pavex/pull/285))
- Activation keys are now validated server-side ([#283](https://github.com/LukeMathWalker/pavex/pull/283))

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

### Fixed
Expand Down
29 changes: 14 additions & 15 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.35"
version = "0.1.36"

[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 = { workspace = true }
mime = { workspace = true }
thiserror = { workspace = true }
serde = { workspace = true, features = ["derive"] }
pavex_macros = { path = "../pavex_macros", version = "0.1.35" }
pavex_macros = { path = "../pavex_macros", version = "0.1.36" }
paste = { workspace = true }
tracing = { workspace = true }
http-body-util = { workspace = true }
pin-project-lite = { workspace = true }
ubyte = { workspace = true, features = ["serde"] }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.35" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.35" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.35" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.36" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.36" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.36" }

# 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 = { workspace = true, features = ["derive"] }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.35" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.36" }
5 changes: 2 additions & 3 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.35" }
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.36" }
clap = { workspace = true, features = ["derive", "env"] }
pavex_miette = { path = "../pavex_miette", version = "0.1.35" }
pavex_miette = { path = "../pavex_miette", version = "0.1.36" }
miette = { workspace = true }
fs-err = { workspace = true }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }
Expand Down Expand Up @@ -53,7 +53,6 @@ hex = { workspace = true }
clap-stdin = { workspace = true }
owo-colors = { workspace = true }
anstyle = { workspace = true }
workspace_hack = { version = "0.1", path = "../workspace_hack" }
reqwest-middleware = { workspace = true, features = ["json"] }
reqwest-tracing = { workspace = true }
reqwest-retry = { workspace = true }
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 = { workspace = true }
pavex = { path = "../pavex", version = "0.1.35" }
pavex = { path = "../pavex", version = "0.1.36" }
thiserror = { workspace = true }
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 = { workspace = true }
serde_json = { workspace = true }
itertools = { workspace = true }
sha2 = { workspace = true }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.35" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.36" }
object-pool = { workspace = true }
num_cpus = { workspace = true }
globwalk = { workspace = true }
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 = { workspace = true, features = ["std"] }
pavex = { version = "0.1.35", path = "../pavex" }
pavex = { version = "0.1.36", 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 = { workspace = true, features = ["build", "git", "gitcl"] }
debug_assertions = []

[dependencies]
pavex = { path = "../pavex", version = "0.1.35" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "0.1.35" }
pavex = { path = "../pavex", version = "0.1.36" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "0.1.36" }
syn = { workspace = true, features = ["full", "extra-traits", "visit"] }
rustdoc-types = { workspace = true }
serde = { workspace = true, features = ["derive"] }
Expand Down Expand Up @@ -48,7 +48,7 @@ textwrap = { workspace = true }
once_cell = { workspace = true }
toml_edit = { workspace = true, features = ["serde"] }
semver = { workspace = true }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.35" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.36" }
matchit = { version = "0.7", package = "pavex_matchit" }
relative-path = { workspace = true }

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 = { workspace = true, features = ["derive", "env"] }
pavexc = { path = "../pavexc", version = "0.1.35" }
pavex_miette = { path = "../pavex_miette", version = "0.1.35" }
pavexc = { path = "../pavexc", version = "0.1.36" }
pavex_miette = { path = "../pavex_miette", version = "0.1.36" }
miette = { workspace = true }
fs-err = { workspace = true }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }
Expand All @@ -28,7 +28,7 @@ supports-color = { workspace = true }
include_dir = { workspace = true }
path-absolutize = { workspace = true }
ron = { workspace = true }
generate_from_path = { path = "../generate_from_path", version = "0.1.35" }
generate_from_path = { path = "../generate_from_path", version = "0.1.36" }
tempfile = { workspace = true }
better-panic = { workspace = true }

Expand Down
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 = { workspace = true }
pavex = { path = "../pavex", version = "0.1.35" }
pavex = { path = "../pavex", version = "0.1.36" }
thiserror = { workspace = true }

0 comments on commit c1d30f4

Please sign in to comment.