Skip to content

Commit b538cd3

Browse files
Prepare release v0.19.0 (#793)
* Prepare release v0.19.0 * Fix code highlighting in changelog entry --------- Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com> Co-authored-by: Josh W Lewis <[email protected]>
1 parent dc95de5 commit b538cd3

File tree

9 files changed

+22
-18
lines changed

9 files changed

+22
-18
lines changed

CHANGELOG.md

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

1010
## [Unreleased]
1111

12+
13+
## [0.19.0] - 2024-02-23
14+
1215
### Added
1316

14-
- `libcnb-data':
17+
- `libcnb-data`:
1518
- Reintroduced support for deserializing `[[stacks]]` in `buildpack.toml`.
1619
([#789](https://github.com/heroku/libcnb.rs/pull/789))
1720
- `libherokubuildpack`:
@@ -262,7 +265,8 @@ version number. See the changelog below for other changes.
262265

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

265-
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.18.0...HEAD
268+
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.19.0...HEAD
269+
[0.19.0]: https://github.com/heroku/libcnb.rs/compare/v0.18.0...v0.19.0
266270
[0.18.0]: https://github.com/heroku/libcnb.rs/compare/v0.17.0...v0.18.0
267271
[0.17.0]: https://github.com/heroku/libcnb.rs/compare/v0.16.0...v0.17.0
268272
[0.16.0]: https://github.com/heroku/libcnb.rs/compare/v0.15.0...v0.16.0

Cargo.toml

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

2020
[workspace.package]
21-
version = "0.18.0"
21+
version = "0.19.0"
2222
rust-version = "1.76"
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.18.0", path = "libcnb" }
42-
libcnb-common = { version = "=0.18.0", path = "libcnb-common" }
43-
libcnb-data = { version = "=0.18.0", path = "libcnb-data" }
44-
libcnb-package = { version = "=0.18.0", path = "libcnb-package" }
45-
libcnb-proc-macros = { version = "=0.18.0", path = "libcnb-proc-macros" }
46-
libcnb-test = { version = "=0.18.0", path = "libcnb-test" }
41+
libcnb = { version = "=0.19.0", path = "libcnb" }
42+
libcnb-common = { version = "=0.19.0", path = "libcnb-common" }
43+
libcnb-data = { version = "=0.19.0", path = "libcnb-data" }
44+
libcnb-package = { version = "=0.19.0", path = "libcnb-package" }
45+
libcnb-proc-macros = { version = "=0.19.0", path = "libcnb-proc-macros" }
46+
libcnb-test = { version = "=0.19.0", path = "libcnb-test" }
4747
toml = { version = "0.8.10" }

libcnb-cargo/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.5.0", default-features = false, features = [
22+
clap = { version = "4.5.1", default-features = false, features = [
2323
"derive",
2424
"error-context",
2525
"help",

libcnb-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.196", features = ["derive"] }
17+
serde = { version = "1.0.197", features = ["derive"] }
1818
thiserror = "1.0.57"
1919
toml.workspace = true

libcnb-data/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ workspace = true
1717
[dependencies]
1818
fancy-regex = { version = "0.13.0", default-features = false, features = ["std"] }
1919
libcnb-proc-macros.workspace = true
20-
serde = { version = "1.0.196", features = ["derive"] }
20+
serde = { version = "1.0.197", features = ["derive"] }
2121
thiserror = "1.0.57"
2222
toml.workspace = true
2323
uriparse = "0.6.4"

libcnb-proc-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ workspace = true
2020
cargo_metadata = "0.18.1"
2121
fancy-regex = { version = "0.13.0", default-features = false, features = ["std"] }
2222
quote = "1.0.35"
23-
syn = { version = "2.0.48", features = ["full"] }
23+
syn = { version = "2.0.50", features = ["full"] }

libcnb-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ thiserror = "1.0.57"
2525

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

libcnb/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ workspace = true
1818
trace = ["dep:opentelemetry", "dep:opentelemetry_sdk", "dep:opentelemetry-stdout"]
1919

2020
[dependencies]
21-
anyhow = { version = "1.0.79", optional = true }
21+
anyhow = { version = "1.0.80", optional = true }
2222
cyclonedx-bom = { version = "0.5.0", optional = true }
2323
libcnb-common.workspace = true
2424
libcnb-data.workspace = true
2525
libcnb-proc-macros.workspace = true
2626
opentelemetry = { version = "0.21.0", optional = true }
2727
opentelemetry_sdk = { version = "0.21.2", optional = true }
2828
opentelemetry-stdout = { version = "0.2.0", optional = true, features = ["trace"] }
29-
serde = { version = "1.0.196", features = ["derive"] }
29+
serde = { version = "1.0.197", features = ["derive"] }
3030
thiserror = "1.0.57"
3131
toml.workspace = true
3232

3333
[dev-dependencies]
3434
tempfile = "3.10.0"
35-
serde_json = "1.0.113"
35+
serde_json = "1.0.114"

libherokubuildpack/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ tar = { version = "0.4.40", default-features = false, optional = true }
4545
termcolor = { version = "1.4.1", optional = true }
4646
thiserror = { version = "1.0.57", optional = true }
4747
toml = { workspace = true, optional = true }
48-
ureq = { version = "2.9.5", default-features = false, features = ["tls"], optional = true }
48+
ureq = { version = "2.9.6", default-features = false, features = ["tls"], optional = true }
4949

5050
[dev-dependencies]
5151
indoc = "2.0.4"

0 commit comments

Comments
 (0)