Skip to content

Commit b9d14a5

Browse files
Prepare release v0.26.1 (#891)
Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
1 parent 4db7e33 commit b9d14a5

File tree

11 files changed

+28
-24
lines changed

11 files changed

+28
-24
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.26.1] - 2024-12-10
14+
1215
### Fixed
1316

1417
- `libherokubuildpack`:
@@ -345,7 +348,8 @@ version number. See the changelog below for other changes.
345348

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

348-
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.26.0...HEAD
351+
[unreleased]: https://github.com/heroku/libcnb.rs/compare/v0.26.1...HEAD
352+
[0.26.1]: https://github.com/heroku/libcnb.rs/compare/v0.26.0...v0.26.1
349353
[0.26.0]: https://github.com/heroku/libcnb.rs/compare/v0.25.0...v0.26.0
350354
[0.25.0]: https://github.com/heroku/libcnb.rs/compare/v0.24.0...v0.25.0
351355
[0.24.0]: https://github.com/heroku/libcnb.rs/compare/v0.23.0...v0.24.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.26.0"
21+
version = "0.26.1"
2222
rust-version = "1.76"
2323
edition = "2021"
2424
license = "BSD-3-Clause"
@@ -39,10 +39,10 @@ missing_errors_doc = "allow"
3939
module_name_repetitions = "allow"
4040

4141
[workspace.dependencies]
42-
libcnb = { version = "=0.26.0", path = "libcnb" }
43-
libcnb-common = { version = "=0.26.0", path = "libcnb-common" }
44-
libcnb-data = { version = "=0.26.0", path = "libcnb-data" }
45-
libcnb-package = { version = "=0.26.0", path = "libcnb-package" }
46-
libcnb-proc-macros = { version = "=0.26.0", path = "libcnb-proc-macros" }
47-
libcnb-test = { version = "=0.26.0", path = "libcnb-test" }
42+
libcnb = { version = "=0.26.1", path = "libcnb" }
43+
libcnb-common = { version = "=0.26.1", path = "libcnb-common" }
44+
libcnb-data = { version = "=0.26.1", path = "libcnb-data" }
45+
libcnb-package = { version = "=0.26.1", path = "libcnb-package" }
46+
libcnb-proc-macros = { version = "=0.26.1", path = "libcnb-proc-macros" }
47+
libcnb-test = { version = "=0.26.1", path = "libcnb-test" }
4848
toml = { version = "0.8.19" }

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.2.0"
10+
fastrand = "2.3.0"
1111
libcnb.workspace = true
1212

1313
[dev-dependencies]

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.5.21", default-features = false, features = [
22+
clap = { version = "4.5.23", default-features = false, features = [
2323
"derive",
2424
"error-context",
2525
"help",
@@ -28,8 +28,8 @@ clap = { version = "4.5.21", default-features = false, features = [
2828
] }
2929
libcnb-data.workspace = true
3030
libcnb-package.workspace = true
31-
pathdiff = "0.2.2"
32-
thiserror = "2.0.3"
31+
pathdiff = "0.2.3"
32+
thiserror = "2.0.6"
3333

3434
[dev-dependencies]
3535
libcnb-common.workspace = true

libcnb-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ workspace = true
1515

1616
[dependencies]
1717
serde = { version = "1.0.215", features = ["derive"] }
18-
thiserror = "2.0.3"
18+
thiserror = "2.0.6"
1919
toml.workspace = true

libcnb-data/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ workspace = true
1818
fancy-regex = { version = "0.14.0", default-features = false, features = ["std"] }
1919
libcnb-proc-macros.workspace = true
2020
serde = { version = "1.0.215", features = ["derive"] }
21-
thiserror = "2.0.3"
21+
thiserror = "2.0.6"
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.5", default-features = false }
24-
thiserror = "2.0.3"
24+
thiserror = "2.0.6"
2525
uriparse = "0.6.4"
2626
which = "7.0.0"

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.19.1"
2121
fancy-regex = { version = "0.14.0", default-features = false, features = ["std"] }
2222
quote = "1.0.37"
23-
syn = { version = "2.0.87", features = ["full"] }
23+
syn = { version = "2.0.90", features = ["full"] }

libcnb-test/Cargo.toml

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

1717
[dependencies]
18-
fastrand = "2.2.0"
18+
fastrand = "2.3.0"
1919
fs_extra = "1.3.0"
2020
libcnb-common.workspace = true
2121
libcnb-data.workspace = true
2222
libcnb-package.workspace = true
2323
regex = "1.11.1"
2424
tempfile = "3.14.0"
25-
thiserror = "2.0.3"
25+
thiserror = "2.0.6"
2626

2727
[dev-dependencies]
2828
indoc = "2.0.5"
2929
libcnb.workspace = true
30-
ureq = { version = "2.10.1", default-features = false }
30+
ureq = { version = "2.12.1", default-features = false }

libcnb/Cargo.toml

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

2020
[dependencies]
21-
anyhow = { version = "1.0.93", optional = true }
21+
anyhow = { version = "1.0.94", optional = true }
2222
cyclonedx-bom = { version = "0.8.0", optional = true }
2323
libcnb-common.workspace = true
2424
libcnb-data.workspace = true
@@ -27,7 +27,7 @@ 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"] }
2929
serde = { version = "1.0.215", features = ["derive"] }
30-
thiserror = "2.0.3"
30+
thiserror = "2.0.6"
3131
toml.workspace = true
3232

3333
[dev-dependencies]

libherokubuildpack/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ crossbeam-utils = { version = "0.8.20", optional = true }
4242
flate2 = { version = "1.0.35", default-features = false, features = ["zlib"], optional = true }
4343
hex = { version = "0.4.3", optional = true }
4444
libcnb = { workspace = true, optional = true }
45-
pathdiff = { version = "0.2.2", optional = true }
45+
pathdiff = { version = "0.2.3", optional = true }
4646
semver = { version = "1.0.23", features = ["serde"], optional = true }
4747
serde = { version = "1.0.215", features = ["derive"], optional = true }
4848
sha2 = { version = "0.10.8", optional = true }
4949
tar = { version = "0.4.43", default-features = false, optional = true }
5050
termcolor = { version = "1.4.1", optional = true }
51-
thiserror = { version = "2.0.3", optional = true }
51+
thiserror = { version = "2.0.6", optional = true }
5252
toml = { workspace = true, optional = true }
53-
ureq = { version = "2.10.1", default-features = false, features = ["tls"], optional = true }
53+
ureq = { version = "2.12.1", default-features = false, features = ["tls"], optional = true }
5454

5555
[dev-dependencies]
5656
serde_test = "1.0.177"

0 commit comments

Comments
 (0)