Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release v0.19.0 #793

Merged
merged 2 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.19.0] - 2024-02-23

### Added

- `libcnb-data':
joshwlewis marked this conversation as resolved.
Show resolved Hide resolved
Expand Down Expand Up @@ -262,7 +265,8 @@ version number. See the changelog below for other changes.

- Remove support for legacy BOM. Remove `Launch::bom`, `Build::bom`, `bom::Bom`, `bom::Entry`. ([#489](https://github.com/heroku/libcnb.rs/pull/489))

[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.18.0...HEAD
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.19.0...HEAD
[0.19.0]: https://github.com/heroku/libcnb.rs/compare/v0.18.0...v0.19.0
[0.18.0]: https://github.com/heroku/libcnb.rs/compare/v0.17.0...v0.18.0
[0.17.0]: https://github.com/heroku/libcnb.rs/compare/v0.16.0...v0.17.0
[0.16.0]: https://github.com/heroku/libcnb.rs/compare/v0.15.0...v0.16.0
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ members = [
]

[workspace.package]
version = "0.18.0"
version = "0.19.0"
rust-version = "1.76"
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -38,10 +38,10 @@ missing_errors_doc = "allow"
module_name_repetitions = "allow"

[workspace.dependencies]
libcnb = { version = "=0.18.0", path = "libcnb" }
libcnb-common = { version = "=0.18.0", path = "libcnb-common" }
libcnb-data = { version = "=0.18.0", path = "libcnb-data" }
libcnb-package = { version = "=0.18.0", path = "libcnb-package" }
libcnb-proc-macros = { version = "=0.18.0", path = "libcnb-proc-macros" }
libcnb-test = { version = "=0.18.0", path = "libcnb-test" }
libcnb = { version = "=0.19.0", path = "libcnb" }
libcnb-common = { version = "=0.19.0", path = "libcnb-common" }
libcnb-data = { version = "=0.19.0", path = "libcnb-data" }
libcnb-package = { version = "=0.19.0", path = "libcnb-package" }
libcnb-proc-macros = { version = "=0.19.0", path = "libcnb-proc-macros" }
libcnb-test = { version = "=0.19.0", path = "libcnb-test" }
toml = { version = "0.8.10" }
2 changes: 1 addition & 1 deletion libcnb-cargo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ path = "src/main.rs"
workspace = true

[dependencies]
clap = { version = "4.5.0", default-features = false, features = [
clap = { version = "4.5.1", default-features = false, features = [
"derive",
"error-context",
"help",
Expand Down
2 changes: 1 addition & 1 deletion libcnb-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ include = ["src/**/*", "LICENSE", "README.md"]
workspace = true

[dependencies]
serde = { version = "1.0.196", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
thiserror = "1.0.57"
toml.workspace = true
2 changes: 1 addition & 1 deletion libcnb-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workspace = true
[dependencies]
fancy-regex = { version = "0.13.0", default-features = false, features = ["std"] }
libcnb-proc-macros.workspace = true
serde = { version = "1.0.196", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
thiserror = "1.0.57"
toml.workspace = true
uriparse = "0.6.4"
Expand Down
2 changes: 1 addition & 1 deletion libcnb-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ workspace = true
cargo_metadata = "0.18.1"
fancy-regex = { version = "0.13.0", default-features = false, features = ["std"] }
quote = "1.0.35"
syn = { version = "2.0.48", features = ["full"] }
syn = { version = "2.0.50", features = ["full"] }
2 changes: 1 addition & 1 deletion libcnb-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ thiserror = "1.0.57"

[dev-dependencies]
indoc = "2.0.4"
ureq = { version = "2.9.5", default-features = false }
ureq = { version = "2.9.6", default-features = false }
libcnb.workspace = true
6 changes: 3 additions & 3 deletions libcnb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ workspace = true
trace = ["dep:opentelemetry", "dep:opentelemetry_sdk", "dep:opentelemetry-stdout"]

[dependencies]
anyhow = { version = "1.0.79", optional = true }
anyhow = { version = "1.0.80", optional = true }
cyclonedx-bom = { version = "0.5.0", optional = true }
libcnb-common.workspace = true
libcnb-data.workspace = true
libcnb-proc-macros.workspace = true
opentelemetry = { version = "0.21.0", optional = true }
opentelemetry_sdk = { version = "0.21.2", optional = true }
opentelemetry-stdout = { version = "0.2.0", optional = true, features = ["trace"] }
serde = { version = "1.0.196", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
thiserror = "1.0.57"
toml.workspace = true

[dev-dependencies]
tempfile = "3.10.0"
serde_json = "1.0.113"
serde_json = "1.0.114"
2 changes: 1 addition & 1 deletion libherokubuildpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ tar = { version = "0.4.40", default-features = false, optional = true }
termcolor = { version = "1.4.1", optional = true }
thiserror = { version = "1.0.57", optional = true }
toml = { workspace = true, optional = true }
ureq = { version = "2.9.5", default-features = false, features = ["tls"], optional = true }
ureq = { version = "2.9.6", default-features = false, features = ["tls"], optional = true }

[dev-dependencies]
indoc = "2.0.4"
Expand Down