Skip to content

Commit 35c5905

Browse files
Merge pull request #510 from wcampbell0x2a/rel-0.15.0
rel: 0.15.0
2 parents b1f2e71 + 4dd7d2d commit 35c5905

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v0.15.0] - 2024-03-24
1011
### `backhand`
1112
- Add support for `Socket` and `NamedFIFO` Inodes in library and extraction binaries. Thanks ([@tnias](https://github.com/tnias)) ([#472](https://github.com/wcampbell0x2a/backhand/pull/472), [#470](https://github.com/wcampbell0x2a/backhand/pull/470))
1213
- Add `FilesytemWriter::push_fifo` and `FilesystemWriter::push_socket`

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99
resolver = "2"
1010

1111
[workspace.package]
12-
version = "0.14.2"
12+
version = "0.15.0"
1313
authors = ["wcampbell <wcampbell1995@gmail.com>"]
1414
license = "MIT OR Apache-2.0"
1515
edition = "2021"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This allows changing the magic bytes, custom compression algorithms, and the End
2525
Add the following to your `Cargo.toml` file:
2626
```toml
2727
[dependencies]
28-
backhand = "0.14.2"
28+
backhand = "0.15.0"
2929
```
3030
### Reading/Writing/Modifying Firmware
3131
```rust,no_run

backhand-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ clap_complete = "4.5.1"
2020
indicatif = "0.17.8"
2121
console = "0.15.8"
2222
rayon = "1.9.0"
23-
backhand = { path = "../backhand", default-features = false, version = "0.14.2" }
23+
backhand = { path = "../backhand", default-features = false, version = "0.15.0" }
2424
tracing = "0.1.40"
2525
color-print = "0.3.5"
2626

backhand/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! Add the following to your `Cargo.toml` file:
66
//! ```toml
77
//! [dependencies]
8-
//! backhand = "0.14.2"
8+
//! backhand = "0.15.0"
99
//! ```
1010
//!
1111
//! ### Reading

0 commit comments

Comments
 (0)