Skip to content

Commit

Permalink
release: version 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shenek committed Oct 12, 2020
1 parent 36cda43 commit 501d1c6
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
6.0.0 (2020-10-12)
------------------
* alter handlers and use it in convert strategy

5.0.2 (2020-10-11)
------------------
* fix convert strategy so it can be safely passed between the threads (second try)
Expand Down
4 changes: 2 additions & 2 deletions streamson-bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "streamson-bin"
version = "5.0.2"
version = "6.0.0"
authors = ["Stepan Henek <stepan@henek.name>"]
edition = "2018"
description = "A program which processes large JSON data."
Expand All @@ -16,4 +16,4 @@ maintenance = { status = "actively-developed" }
[dependencies]
clap = "2.33"
lazy_static = "1.4"
streamson-lib = { path = "../streamson-lib/" }
streamson-lib = { version = "6.0.0", path = "../streamson-lib/" }
4 changes: 2 additions & 2 deletions streamson-extra-matchers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "streamson-extra-matchers"
version = "5.0.2"
version = "6.0.0"
authors = ["Stepan Henek"]
edition = "2018"
description = "Extra matchers for streamson library"
Expand All @@ -19,4 +19,4 @@ with_regex = ["regex"]

[dependencies]
regex = { version = "1", optional = true }
streamson-lib = { version = "5.0.2", path = "../streamson-lib/" }
streamson-lib = { version = "6.0.0", path = "../streamson-lib/" }
4 changes: 2 additions & 2 deletions streamson-futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "streamson-futures"
version = "5.0.2"
version = "6.0.0"
authors = ["Stepan Henek <stepan@henek.name>"]
edition = "2018"
description = "A library which integrates streamson with futures stream"
Expand All @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
bytes = "0.5"
futures = "~0.3.5"
streamson-lib = { version = "5.0.2", path = "../streamson-lib/" }
streamson-lib = { version = "6.0.0", path = "../streamson-lib/" }

[dev-dependencies]
tokio = { version = "0.2", features = ["full"] }
4 changes: 2 additions & 2 deletions streamson-generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "streamson-generator"
version = "5.0.2"
version = "6.0.0"
authors = ["Stepan Henek <stepan@henek.name>"]
edition = "2018"
description = "A library which integrates streamson with generators"
Expand All @@ -14,4 +14,4 @@ categories = ["parsing"]
maintenance = { status = "actively-developed" }

[dependencies]
streamson-lib = { version = "5.0.2", path = "../streamson-lib/" }
streamson-lib = { version = "6.0.0", path = "../streamson-lib/" }
2 changes: 1 addition & 1 deletion streamson-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "streamson-lib"
version = "5.0.2"
version = "6.0.0"
authors = ["Stepan Henek"]
edition = "2018"
description = "Library for processing large JSONs"
Expand Down
4 changes: 2 additions & 2 deletions streamson-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "streamson-tokio"
version = "5.0.2"
version = "6.0.0"
authors = ["Stepan Henek"]
edition = "2018"
description = "Tokio and streamson integration library"
Expand All @@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" }

[dependencies]
bytes = "0.5"
streamson-lib = { version = "5.0.2", path = "../streamson-lib/" }
streamson-lib = { version = "6.0.0", path = "../streamson-lib/" }
tokio-util = { version = "0.3", features = ["codec"] }

[dev-dependencies]
Expand Down

0 comments on commit 501d1c6

Please sign in to comment.