Skip to content

Commit 6cd51ce

Browse files
Prepare release v0.16.0 (#751)
Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
1 parent d72f9f2 commit 6cd51ce

File tree

12 files changed

+45
-41
lines changed

12 files changed

+45
-41
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
13+
## [0.16.0] - 2023-11-17
14+
1215
### Changed
1316

1417
- Raised Minimum Supported Rust Version (MSRV) to `1.74`. ([#747](https://github.com/heroku/libcnb.rs/pull/747))
@@ -224,7 +227,8 @@ version number. See the changelog below for other changes.
224227

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

227-
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.15.0...HEAD
230+
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.16.0...HEAD
231+
[0.16.0]: https://github.com/heroku/libcnb.rs/compare/v0.15.0...v0.16.0
228232
[0.15.0]: https://github.com/heroku/libcnb.rs/compare/v0.14.0...v0.15.0
229233
[0.14.0]: https://github.com/heroku/libcnb.rs/compare/v0.13.0...v0.14.0
230234
[0.13.0]: https://github.com/heroku/libcnb.rs/compare/v0.12.0...v0.13.0

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ members = [
1818
]
1919

2020
[workspace.package]
21-
version = "0.15.0"
21+
version = "0.16.0"
2222
rust-version = "1.74"
2323
edition = "2021"
2424
license = "BSD-3-Clause"
@@ -38,10 +38,10 @@ missing_errors_doc = "allow"
3838
module_name_repetitions = "allow"
3939

4040
[workspace.dependencies]
41-
libcnb = { version = "=0.15.0", path = "libcnb" }
42-
libcnb-common = { version = "=0.15.0", path = "libcnb-common" }
43-
libcnb-data = { version = "=0.15.0", path = "libcnb-data" }
44-
libcnb-package = { version = "=0.15.0", path = "libcnb-package" }
45-
libcnb-proc-macros = { version = "=0.15.0", path = "libcnb-proc-macros" }
46-
libcnb-test = { version = "=0.15.0", path = "libcnb-test" }
47-
toml = { version = "0.8.0" }
41+
libcnb = { version = "=0.16.0", path = "libcnb" }
42+
libcnb-common = { version = "=0.16.0", path = "libcnb-common" }
43+
libcnb-data = { version = "=0.16.0", path = "libcnb-data" }
44+
libcnb-package = { version = "=0.16.0", path = "libcnb-package" }
45+
libcnb-proc-macros = { version = "=0.16.0", path = "libcnb-proc-macros" }
46+
libcnb-test = { version = "=0.16.0", path = "libcnb-test" }
47+
toml = { version = "0.8.8" }

examples/execd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ workspace = true
1010

1111
[dependencies]
1212
libcnb.workspace = true
13-
fastrand = "2.0.0"
13+
fastrand = "2.0.1"
1414

1515
[dev-dependencies]
1616
libcnb-test.workspace = true

examples/ruby-sample/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ publish = false
99
workspace = true
1010

1111
[dependencies]
12-
flate2 = { version = "1.0.27", default-features = false, features = ["zlib"] }
12+
flate2 = { version = "1.0.28", default-features = false, features = ["zlib"] }
1313
libcnb.workspace = true
14-
serde = "1.0.188"
15-
sha2 = "0.10.7"
14+
serde = "1.0.192"
15+
sha2 = "0.10.8"
1616
tar = { version = "0.4.40", default-features = false }
17-
tempfile = "3.8.0"
18-
ureq = { version = "2.7.1", default-features = false, features = ["tls"] }
17+
tempfile = "3.8.1"
18+
ureq = { version = "2.8.0", default-features = false, features = ["tls"] }
1919

2020
[dev-dependencies]
2121
libcnb-test.workspace = true

libcnb-cargo/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ path = "src/main.rs"
1919
workspace = true
2020

2121
[dependencies]
22-
clap = { version = "4.3.24", default-features = false, features = [
22+
clap = { version = "4.4.8", default-features = false, features = [
2323
"derive",
2424
"error-context",
2525
"help",
@@ -29,8 +29,8 @@ clap = { version = "4.3.24", default-features = false, features = [
2929
libcnb-data.workspace = true
3030
libcnb-package.workspace = true
3131
pathdiff = "0.2.1"
32-
thiserror = "1.0.48"
32+
thiserror = "1.0.50"
3333

3434
[dev-dependencies]
35-
tempfile = "3.8.0"
35+
tempfile = "3.8.1"
3636
libcnb-common.workspace = true

libcnb-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ include = ["src/**/*", "LICENSE", "README.md"]
1414
workspace = true
1515

1616
[dependencies]
17-
serde = { version = "1.0.188", features = ["derive"] }
18-
thiserror = "1.0.48"
17+
serde = { version = "1.0.192", features = ["derive"] }
18+
thiserror = "1.0.50"
1919
toml.workspace = true

libcnb-data/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ workspace = true
1717
[dependencies]
1818
fancy-regex = { version = "0.12.0", default-features = false, features = ["std"] }
1919
libcnb-proc-macros.workspace = true
20-
serde = { version = "1.0.188", features = ["derive"] }
21-
thiserror = "1.0.48"
20+
serde = { version = "1.0.192", features = ["derive"] }
21+
thiserror = "1.0.50"
2222
toml.workspace = true
2323
uriparse = "0.6.4"
2424

libcnb-package/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ include = ["src/**/*", "LICENSE", "README.md"]
1515
workspace = true
1616

1717
[dependencies]
18-
cargo_metadata = "0.18.0"
18+
cargo_metadata = "0.18.1"
1919
ignore = "0.4"
2020
libcnb-common.workspace = true
2121
libcnb-data.workspace = true
2222
petgraph = { version = "0.6.4", default-features = false }
23-
thiserror = "1.0.48"
23+
thiserror = "1.0.50"
2424
uriparse = "0.6.4"
2525
which = "5.0.0"

libcnb-proc-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ proc-macro = true
1717
workspace = true
1818

1919
[dependencies]
20-
cargo_metadata = "0.18.0"
20+
cargo_metadata = "0.18.1"
2121
fancy-regex = { version = "0.12.0", default-features = false, features = ["std"] }
2222
quote = "1.0.33"
23-
syn = { version = "2.0.37", features = ["full"] }
23+
syn = { version = "2.0.39", features = ["full"] }

libcnb-test/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ include = ["src/**/*", "LICENSE", "README.md"]
1515
workspace = true
1616

1717
[dependencies]
18-
fastrand = "2.0.0"
18+
fastrand = "2.0.1"
1919
fs_extra = "1.3.0"
2020
libcnb-common.workspace = true
2121
libcnb-data.workspace = true
2222
libcnb-package.workspace = true
23-
tempfile = "3.8.0"
24-
thiserror = "1.0.48"
23+
tempfile = "3.8.1"
24+
thiserror = "1.0.50"
2525

2626
[dev-dependencies]
2727
indoc = "2.0.4"
28-
ureq = { version = "2.7.1", default-features = false }
28+
ureq = { version = "2.8.0", default-features = false }
2929
libcnb.workspace = true

0 commit comments

Comments
 (0)