Skip to content

Commit

Permalink
Prepare release v0.17.0 (#752)
Browse files Browse the repository at this point in the history
Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
  • Loading branch information
heroku-linguist[bot] committed Dec 6, 2023
1 parent 487d6f7 commit 24a10fd
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 17 deletions.
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.17.0] - 2023-12-06

### Added

- `libcnb`:
Expand Down Expand Up @@ -232,7 +235,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.16.0...HEAD
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.17.0...HEAD
[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
[0.15.0]: https://github.com/heroku/libcnb.rs/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/heroku/libcnb.rs/compare/v0.13.0...v0.14.0
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ members = [
]

[workspace.package]
version = "0.16.0"
version = "0.17.0"
rust-version = "1.74"
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -39,10 +39,10 @@ missing_errors_doc = "allow"
module_name_repetitions = "allow"

[workspace.dependencies]
libcnb = { version = "=0.16.0", path = "libcnb" }
libcnb-common = { version = "=0.16.0", path = "libcnb-common" }
libcnb-data = { version = "=0.16.0", path = "libcnb-data" }
libcnb-package = { version = "=0.16.0", path = "libcnb-package" }
libcnb-proc-macros = { version = "=0.16.0", path = "libcnb-proc-macros" }
libcnb-test = { version = "=0.16.0", path = "libcnb-test" }
libcnb = { version = "=0.17.0", path = "libcnb" }
libcnb-common = { version = "=0.17.0", path = "libcnb-common" }
libcnb-data = { version = "=0.17.0", path = "libcnb-data" }
libcnb-package = { version = "=0.17.0", path = "libcnb-package" }
libcnb-proc-macros = { version = "=0.17.0", path = "libcnb-proc-macros" }
libcnb-test = { version = "=0.17.0", path = "libcnb-test" }
toml = { version = "0.8.8" }
4 changes: 2 additions & 2 deletions examples/ruby-sample/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ workspace = true
[dependencies]
flate2 = { version = "1.0.28", default-features = false, features = ["zlib"] }
libcnb.workspace = true
serde = "1.0.192"
serde = "1.0.193"
sha2 = "0.10.8"
tar = { version = "0.4.40", default-features = false }
tempfile = "3.8.1"
ureq = { version = "2.8.0", default-features = false, features = ["tls"] }
ureq = { version = "2.9.1", default-features = false, features = ["tls"] }

[dev-dependencies]
libcnb-test.workspace = true
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.4.8", default-features = false, features = [
clap = { version = "4.4.11", 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.192", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] }
thiserror = "1.0.50"
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.12.0", default-features = false, features = ["std"] }
libcnb-proc-macros.workspace = true
serde = { version = "1.0.192", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] }
thiserror = "1.0.50"
toml.workspace = true
uriparse = "0.6.4"
Expand Down
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.50"

[dev-dependencies]
indoc = "2.0.4"
ureq = { version = "2.8.0", default-features = false }
ureq = { version = "2.9.1", default-features = false }
libcnb.workspace = true
4 changes: 2 additions & 2 deletions libcnb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ 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.0", optional = true }
opentelemetry_sdk = { version = "0.21.1", optional = true }
opentelemetry-stdout = { version = "0.2.0", optional = true, features = ["trace"] }
serde = { version = "1.0.192", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] }
thiserror = "1.0.50"
toml.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion libherokubuildpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ tar = { version = "0.4.40", default-features = false, optional = true }
termcolor = { version = "1.4.0", optional = true }
thiserror = { version = "1.0.50", optional = true }
toml = { workspace = true, optional = true }
ureq = { version = "2.8.0", default-features = false, features = ["tls"], optional = true }
ureq = { version = "2.9.1", default-features = false, features = ["tls"], optional = true }

[dev-dependencies]
tempfile = "3.8.1"

0 comments on commit 24a10fd

Please sign in to comment.