Skip to content

Commit

Permalink
Merge pull request #420 from wcampbell0x2a/add-readme-to-manifest
Browse files Browse the repository at this point in the history
Fix README manifest link
  • Loading branch information
wcampbell0x2a authored Jan 14, 2024
2 parents d75f8ba + 9aa8904 commit fe8488b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.14.1] - 2024-01-13
### `backhand`
#### Changes
- Fix path to project `README.md` for `crates.io`

## [v0.14.0] - 2024-01-13
Major changes were made to the organization of this repo, with the library `backhand` now being separated from
the `backhand-cli` package, which is used to install `unsquashfs`, `replace`, and `add`.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.14.0"
version = "0.14.1"
authors = ["wcampbell <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This allows changing the magic bytes, custom compression algorithms, and the End
Add the following to your `Cargo.toml` file:
```toml
[dependencies]
backhand = "0.14.0"
backhand = "0.14.1"
```
### Reading/Writing/Modifying Firmware
```rust,no_run
Expand Down
3 changes: 2 additions & 1 deletion backhand-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ keywords.workspace = true
categories.workspace = true
rust-version = "1.73.0"
description = "Binaries for the reading, creating, and modification of SquashFS file systems"
readme = "../README.md"

[dependencies]
nix = { version = "0.27.1", default-features = false, features = ["fs"] }
Expand All @@ -19,7 +20,7 @@ clap_complete = "4.4.5"
indicatif = "0.17.7"
console = "0.15.7"
rayon = "1.8.0"
backhand = { path = "../backhand", default-features = false, version = "0.14.0" }
backhand = { path = "../backhand", default-features = false, version = "0.14.1" }
tracing = "0.1.40"
color-print = "0.3.5"

Expand Down
3 changes: 2 additions & 1 deletion backhand/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ keywords.workspace = true
categories.workspace = true
rust-version = "1.67.1"
description = "Library for the reading, creating, and modification of SquashFS file systems"
readme = "../README.md"

[dependencies]
# for lib
Expand Down Expand Up @@ -53,4 +54,4 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[lib]
bench = false
bench = false
2 changes: 1 addition & 1 deletion backhand/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//! Add the following to your `Cargo.toml` file:
//! ```toml
//! [dependencies]
//! backhand = "0.14.0"
//! backhand = "0.14.1"
//! ```
//!
//! ### Reading
Expand Down

0 comments on commit fe8488b

Please sign in to comment.