Skip to content

Commit a4e48fd

Browse files
Prepare release v0.21.0 (#822)
* Prepare release v0.21.0 * Add additional comment for #821 --------- Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com> Co-authored-by: Ed Morley <[email protected]>
1 parent 101af17 commit a4e48fd

File tree

12 files changed

+32
-25
lines changed

12 files changed

+32
-25
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.21.0] - 2024-04-30
14+
1215
### Added
1316

1417
- `libcnb`:
@@ -289,7 +292,8 @@ version number. See the changelog below for other changes.
289292

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

292-
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.20.0...HEAD
295+
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.21.0...HEAD
296+
[0.21.0]: https://github.com/heroku/libcnb.rs/compare/v0.20.0...v0.21.0
293297
[0.20.0]: https://github.com/heroku/libcnb.rs/compare/v0.19.0...v0.20.0
294298
[0.19.0]: https://github.com/heroku/libcnb.rs/compare/v0.18.0...v0.19.0
295299
[0.18.0]: https://github.com/heroku/libcnb.rs/compare/v0.17.0...v0.18.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.20.0"
21+
version = "0.21.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.20.0", path = "libcnb" }
42-
libcnb-common = { version = "=0.20.0", path = "libcnb-common" }
43-
libcnb-data = { version = "=0.20.0", path = "libcnb-data" }
44-
libcnb-package = { version = "=0.20.0", path = "libcnb-package" }
45-
libcnb-proc-macros = { version = "=0.20.0", path = "libcnb-proc-macros" }
46-
libcnb-test = { version = "=0.20.0", path = "libcnb-test" }
41+
libcnb = { version = "=0.21.0", path = "libcnb" }
42+
libcnb-common = { version = "=0.21.0", path = "libcnb-common" }
43+
libcnb-data = { version = "=0.21.0", path = "libcnb-data" }
44+
libcnb-package = { version = "=0.21.0", path = "libcnb-package" }
45+
libcnb-proc-macros = { version = "=0.21.0", path = "libcnb-proc-macros" }
46+
libcnb-test = { version = "=0.21.0", path = "libcnb-test" }
4747
toml = { version = "0.8.12" }

examples/execd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rust-version.workspace = true
77
workspace = true
88

99
[dependencies]
10-
fastrand = "2.0.2"
10+
fastrand = "2.1.0"
1111
libcnb.workspace = true
1212

1313
[dev-dependencies]

libcnb-cargo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ clap = { version = "4.5.4", default-features = false, features = [
2929
libcnb-data.workspace = true
3030
libcnb-package.workspace = true
3131
pathdiff = "0.2.1"
32-
thiserror = "1.0.58"
32+
thiserror = "1.0.59"
3333

3434
[dev-dependencies]
3535
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.197", features = ["derive"] }
18-
thiserror = "1.0.58"
17+
serde = { version = "1.0.199", features = ["derive"] }
18+
thiserror = "1.0.59"
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.13.0", default-features = false, features = ["std"] }
1919
libcnb-proc-macros.workspace = true
20-
serde = { version = "1.0.197", features = ["derive"] }
21-
thiserror = "1.0.58"
20+
serde = { version = "1.0.199", features = ["derive"] }
21+
thiserror = "1.0.59"
2222
toml.workspace = true
2323
uriparse = "0.6.4"
2424

libcnb-package/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ indoc = "2.0.5"
2121
libcnb-common.workspace = true
2222
libcnb-data.workspace = true
2323
petgraph = { version = "0.6.4", default-features = false }
24-
thiserror = "1.0.58"
24+
thiserror = "1.0.59"
2525
uriparse = "0.6.4"
2626
which = "6.0.1"

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.36"
23-
syn = { version = "2.0.58", features = ["full"] }
23+
syn = { version = "2.0.60", features = ["full"] }

libcnb-test/Cargo.toml

Lines changed: 3 additions & 3 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.2"
18+
fastrand = "2.1.0"
1919
fs_extra = "1.3.0"
2020
libcnb-common.workspace = true
2121
libcnb-data.workspace = true
2222
libcnb-package.workspace = true
2323
tempfile = "3.10.1"
24-
thiserror = "1.0.58"
24+
thiserror = "1.0.59"
2525

2626
[dev-dependencies]
2727
indoc = "2.0.5"
2828
libcnb.workspace = true
29-
ureq = { version = "2.9.6", default-features = false }
29+
ureq = { version = "2.9.7", default-features = false }

libcnb/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ 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.197", features = ["derive"] }
30-
thiserror = "1.0.58"
29+
serde = { version = "1.0.199", features = ["derive"] }
30+
thiserror = "1.0.59"
3131
toml.workspace = true
3232

3333
[dev-dependencies]
34-
serde_json = "1.0.115"
34+
serde_json = "1.0.116"
3535
tempfile = "3.10.1"

0 commit comments

Comments
 (0)