Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMathWalker committed Apr 16, 2024
1 parent d53a7c9 commit bf8dbcb
Show file tree
Hide file tree
Showing 15 changed files with 45 additions and 45 deletions.
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/generate_from_path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "generate_from_path"
version = "0.1.25"
version = "0.1.26"
edition.workspace = true
repository.workspace = true
description = "Generate a Rust project from a local Liquid template. A stripped-down version of cargo-generate."
Expand Down
10 changes: 5 additions & 5 deletions libs/pavex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavex"
version = "0.1.25"
version = "0.1.26"
description = "A framework for building API services and web applications in Rust."
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
keywords = ["http", "web", "framework", "pavex", "rest"]
Expand All @@ -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.25" }
pavex_macros = { path = "../pavex_macros", version = "0.1.26" }
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.25" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.25" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.25" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.26" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.26" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.26" }

# Route parameters
matchit = { version = "0.7", package = "pavex_matchit" }
Expand Down
4 changes: 2 additions & 2 deletions libs/pavex_bp_schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavex_bp_schema"
version = "0.1.25"
version = "0.1.26"
description = "The schema used to (de)serialize a Pavex Blueprint"
keywords = ["pavex"]
edition.workspace = true
Expand All @@ -9,4 +9,4 @@ license.workspace = true

[dependencies]
serde = { version = "1", features = ["derive"] }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.25" }
pavex_reflection = { path = "../pavex_reflection", version = "=0.1.26" }
6 changes: 3 additions & 3 deletions libs/pavex_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavex_cli"
version = "0.1.25"
version = "0.1.26"
description = "The companion CLI for Pavex, a Rust framework to build API services and web applications."
keywords = ["pavex"]
edition.workspace = true
Expand All @@ -19,9 +19,9 @@ harness = false
vergen = { workspace = true }

[dependencies]
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.25" }
pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.26" }
clap = { version = "4", features = ["derive", "env"] }
pavex_miette = { path = "../pavex_miette", version = "0.1.25" }
pavex_miette = { path = "../pavex_miette", version = "0.1.26" }
miette = { version = "6.0.1" }
fs-err = "2.7.0"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
Expand Down
4 changes: 2 additions & 2 deletions libs/pavex_cli_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavex_cli_client"
version = "0.1.25"
version = "0.1.26"
description = "A convenient Rust interface to execute Pavex CLI commands."
keywords = ["pavex"]
edition.workspace = true
Expand All @@ -9,5 +9,5 @@ license.workspace = true

[dependencies]
anyhow = "1"
pavex = { path = "../pavex", version = "0.1.25" }
pavex = { path = "../pavex", version = "0.1.26" }
thiserror = "1.0.56"
2 changes: 1 addition & 1 deletion libs/pavex_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavex_macros"
version = "0.1.25"
version = "0.1.26"
description = "Procedural macros for the Pavex framwork."
keywords = ["pavex"]
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_miette/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavex_miette"
version = "0.1.25"
version = "0.1.26"
description = "A custom Miette theme for Pavex errors."
keywords = ["pavex"]
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion libs/pavex_reflection/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavex_reflection"
version = "0.1.25"
version = "0.1.26"
description = "Utility types when working with compile-time reflection in Rust"
keywords = ["pavex"]
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions libs/pavex_test_runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavex_test_runner"
version = "0.1.25"
version = "0.1.26"
description = "A custom test runner to execute UI tests for Pavex"
keywords = ["pavex"]
edition.workspace = true
Expand Down 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.25" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.26" }
object-pool = "0.5"
num_cpus = "1"
globwalk = "0.9.1"
Expand Down
4 changes: 2 additions & 2 deletions libs/pavex_tracing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavex_tracing"
version = "0.1.25"
version = "0.1.26"
edition.workspace = true
repository.workspace = true
homepage.workspace = true
Expand All @@ -11,4 +11,4 @@ readme = "README.md"

[dependencies]
tracing = { version = "0.1", default-features = false, features = ["std"] }
pavex = { version = "0.1.25", path = "../pavex" }
pavex = { version = "0.1.26", path = "../pavex" }
8 changes: 4 additions & 4 deletions libs/pavexc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavexc"
version = "0.1.25"
version = "0.1.26"
description = "The compiler powering Pavex"
keywords = ["pavex"]
edition.workspace = true
Expand All @@ -18,8 +18,8 @@ vergen = { version = "8.0.0", features = ["build", "git", "gitcl"] }
debug_assertions = []

[dependencies]
pavex = { path = "../pavex", version = "0.1.25" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "0.1.25" }
pavex = { path = "../pavex", version = "0.1.26" }
pavex_bp_schema = { path = "../pavex_bp_schema", version = "0.1.26" }
syn = { version = "2", features = ["full", "extra-traits", "visit"] }
rustdoc-types = "0.24.0"
serde = { version = "1.0.139", features = ["derive"] }
Expand Down Expand Up @@ -49,7 +49,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.25" }
persist_if_changed = { path = "../persist_if_changed", version = "0.1.26" }
matchit = { version = "0.7", package = "pavex_matchit" }

# Sqlite cache
Expand Down
8 changes: 4 additions & 4 deletions libs/pavexc_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavexc_cli"
version = "0.1.25"
version = "0.1.26"
description = "A CLI interface for the Pavex compiler."
keywords = ["pavex"]
edition.workspace = true
Expand All @@ -14,8 +14,8 @@ path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive", "env"] }
pavexc = { path = "../pavexc", version = "0.1.25" }
pavex_miette = { path = "../pavex_miette", version = "0.1.25" }
pavexc = { path = "../pavexc", version = "0.1.26" }
pavex_miette = { path = "../pavex_miette", version = "0.1.26" }
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.25" }
generate_from_path = { path = "../generate_from_path", version = "0.1.26" }
tempfile = "3.9.0"
better-panic = "0.3.0"

Expand Down
4 changes: 2 additions & 2 deletions libs/pavexc_cli_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pavexc_cli_client"
version = "0.1.25"
version = "0.1.26"
description = "A convenient Rust interface to execute pavexc CLI commands."
keywords = ["pavex"]
edition.workspace = true
Expand All @@ -9,5 +9,5 @@ license.workspace = true

[dependencies]
anyhow = "1"
pavex = { path = "../pavex", version = "0.1.25" }
pavex = { path = "../pavex", version = "0.1.26" }
thiserror = "1.0.56"
2 changes: 1 addition & 1 deletion libs/persist_if_changed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "persist_if_changed"
version = "0.1.25"
version = "0.1.26"
description = "A library for persisting data to disk only if it has changed."
keywords = ["pavex"]
edition.workspace = true
Expand Down

0 comments on commit bf8dbcb

Please sign in to comment.