Skip to content

Commit

Permalink
release: version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shenek committed May 29, 2020
1 parent 9f9a3f3 commit 70e9d0c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
0.2.0 (2020-05-30)
------------------

* added `Buffer` handler
* added library which can be used with tokio
* added a simple benchmark
* fixes regarding `"` escapes
* improved error handling


0.1.0 (2020-05-19)
------------------

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 = "0.1.0"
version = "0.2.0"
authors = ["Stepan Henek <stepan@henek.name>"]
edition = "2018"
description = "A program which processess large JSON input and splits them into a small ones."
Expand All @@ -12,4 +12,4 @@ categories = ["parsing"]

[dependencies]
clap = "2.33"
streamson-lib = { version = "0.1.0", path = "../streamson-lib/" }
streamson-lib = { version = "0.2.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 = "0.1.0"
version = "0.2.0"
authors = ["Stepan Henek"]
edition = "2018"
description = "Library for splitting 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 = "0.1.0"
version = "0.2.0"
authors = ["Stepan Henek"]
edition = "2018"
description = "Tokio and streamson integration library"
Expand All @@ -12,7 +12,7 @@ categories = ["parsing"]

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

[dev-dependencies]
Expand Down

0 comments on commit 70e9d0c

Please sign in to comment.