Skip to content

Commit

Permalink
bump to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hucsmn committed Sep 17, 2021
1 parent b861ad6 commit 8752863
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qbsdiff"
version = "1.3.1"
version = "1.4.0"
authors = ["hucsmn <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
qbsdiff
=======

[![crates](https://img.shields.io/badge/crates-1.3.1-blue)](https://crates.io/crates/qbsdiff)
[![docs](https://img.shields.io/badge/docs-1.3.1-blue)](https://docs.rs/qbsdiff)
[![crates](https://img.shields.io/badge/crates-1.4.0-blue)](https://crates.io/crates/qbsdiff)
[![docs](https://img.shields.io/badge/docs-1.4.0-blue)](https://docs.rs/qbsdiff)
[![dependency status](https://deps.rs/repo/github/hucsmn/qbsdiff/status.svg)](https://deps.rs/repo/github/hucsmn/qbsdiff)


Expand All @@ -11,7 +11,7 @@ Fast and memory saving bsdiff 4.x compatible delta compressor and patcher.
Add dependency to `Cargo.toml`:
```toml
[dependencies]
qbsdiff = "1.3"
qbsdiff = "1.4"
```

Build commands
Expand Down
2 changes: 1 addition & 1 deletion cmd/qbsdiff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use qbsdiff::{Bsdiff, ParallelScheme};
fn main() {
let matches = clap_app!(
qbsdiff =>
(version: "1.3.1")
(version: "1.4.0")
(about: "fast and memory saving bsdiff 4.x compatible delta compressor")
(@arg NOPAR:
-P
Expand Down
2 changes: 1 addition & 1 deletion cmd/qbspatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use qbsdiff::Bspatch;
fn main() {
let matches = clap_app!(
qbspatch =>
(version: "1.3.1")
(version: "1.4.0")
(about: "fast and memory saving bsdiff 4.x compatible patcher")
(@arg BSIZE:
-b +takes_value
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Fast and memory saving bsdiff 4.x compatible delta compressor and patcher.
Add dependency to `Cargo.toml`:
```toml
[dependencies]
qbsdiff = "1.3"
qbsdiff = "1.4"
```
Build commands
Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qbsdiff_test_bench_utils"
version = "0.1.1"
version = "0.1.2"
authors = ["hucsmn <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down

0 comments on commit 8752863

Please sign in to comment.