Skip to content

Commit 8752863

Browse files
committed
bump to 1.4.0
1 parent b861ad6 commit 8752863

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qbsdiff"
3-
version = "1.3.1"
3+
version = "1.4.0"
44
authors = ["hucsmn <[email protected]>"]
55
edition = "2018"
66
license = "MIT"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
qbsdiff
22
=======
33

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

88

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

1717
Build commands

cmd/qbsdiff.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use qbsdiff::{Bsdiff, ParallelScheme};
1313
fn main() {
1414
let matches = clap_app!(
1515
qbsdiff =>
16-
(version: "1.3.1")
16+
(version: "1.4.0")
1717
(about: "fast and memory saving bsdiff 4.x compatible delta compressor")
1818
(@arg NOPAR:
1919
-P

cmd/qbspatch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use qbsdiff::Bspatch;
1313
fn main() {
1414
let matches = clap_app!(
1515
qbspatch =>
16-
(version: "1.3.1")
16+
(version: "1.4.0")
1717
(about: "fast and memory saving bsdiff 4.x compatible patcher")
1818
(@arg BSIZE:
1919
-b +takes_value

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Fast and memory saving bsdiff 4.x compatible delta compressor and patcher.
44
Add dependency to `Cargo.toml`:
55
```toml
66
[dependencies]
7-
qbsdiff = "1.3"
7+
qbsdiff = "1.4"
88
```
99
1010
Build commands

utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qbsdiff_test_bench_utils"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["hucsmn <[email protected]>"]
55
edition = "2018"
66
license = "MIT"

0 commit comments

Comments
 (0)