Skip to content

Commit b7bd4d1

Browse files
committed
release: version 7.1.0
1 parent ebbc5d5 commit b7bd4d1

6 files changed

Lines changed: 20 additions & 9 deletions

File tree

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
7.1.0 (2020-10-05)
2+
-----------------
3+
4+
* fix memory inefficiencies in streamson-bin
5+
* a new documentation site added (hosted on netlify)
6+
https://streamson.henek.name
7+
* added a code coverage info (codecov.io)
8+
* `+` operator for Group handler
9+
* manpages for sson
10+
11+
112
7.0.1 (2020-04-15)
213
------------------
314

streamson-bin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "streamson-bin"
3-
version = "7.0.1"
3+
version = "7.1.0"
44
authors = ["Stepan Henek <stepan@henek.name>"]
55
edition = "2018"
66
description = "A program which processes large JSON data."
@@ -22,7 +22,7 @@ maintenance = { status = "actively-developed" }
2222
clap = "3.0.0-beta"
2323
clap_generate = "3.0.0-beta"
2424
lazy_static = "1.4"
25-
streamson-lib = { version = "7.0.1", path = "../streamson-lib/" }
25+
streamson-lib = { version = "7.1.0", path = "../streamson-lib/" }
2626
assert_cmd = { version = "~1.0.1", optional = true }
2727
predicates = { version = "~1.0.7", optional = true }
2828
man = { version = "~0.3.0", optional = true }

streamson-futures/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "streamson-futures"
3-
version = "7.0.1"
3+
version = "7.1.0"
44
authors = ["Stepan Henek <stepan@henek.name>"]
55
edition = "2018"
66
description = "A library which integrates streamson with futures stream"
@@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" }
1616
[dependencies]
1717
bytes = "0.5"
1818
futures = "~0.3.5"
19-
streamson-lib = { version = "7.0.1", path = "../streamson-lib/" }
19+
streamson-lib = { version = "7.1.0", path = "../streamson-lib/" }
2020

2121
[dev-dependencies]
2222
tokio = { version = "0.2", features = ["full"] }

streamson-generator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "streamson-generator"
3-
version = "7.0.1"
3+
version = "7.1.0"
44
authors = ["Stepan Henek <stepan@henek.name>"]
55
edition = "2018"
66
description = "A library which integrates streamson with generators"
@@ -14,4 +14,4 @@ categories = ["parsing"]
1414
maintenance = { status = "actively-developed" }
1515

1616
[dependencies]
17-
streamson-lib = { version = "7.0.1", path = "../streamson-lib/" }
17+
streamson-lib = { version = "7.1.0", path = "../streamson-lib/" }

streamson-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "streamson-lib"
3-
version = "7.0.1"
3+
version = "7.1.0"
44
authors = ["Stepan Henek"]
55
edition = "2018"
66
description = "Library for processing large JSONs"

streamson-tokio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "streamson-tokio"
3-
version = "7.0.1"
3+
version = "7.1.0"
44
authors = ["Stepan Henek"]
55
edition = "2018"
66
description = "Tokio and streamson integration library"
@@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" }
1515

1616
[dependencies]
1717
bytes = "0.5"
18-
streamson-lib = { version = "7.0.1", path = "../streamson-lib/" }
18+
streamson-lib = { version = "7.1.0", path = "../streamson-lib/" }
1919
tokio-util = { version = "0.4", features = ["codec"] }
2020

2121
[dev-dependencies]

0 commit comments

Comments
 (0)