diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 684e8c3..092c4b4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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) ------------------ diff --git a/streamson-bin/Cargo.toml b/streamson-bin/Cargo.toml index c174500..c68ccd2 100644 --- a/streamson-bin/Cargo.toml +++ b/streamson-bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "streamson-bin" -version = "0.1.0" +version = "0.2.0" authors = ["Stepan Henek "] edition = "2018" description = "A program which processess large JSON input and splits them into a small ones." @@ -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/" } diff --git a/streamson-lib/Cargo.toml b/streamson-lib/Cargo.toml index 9d8cce4..7a49850 100644 --- a/streamson-lib/Cargo.toml +++ b/streamson-lib/Cargo.toml @@ -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" diff --git a/streamson-tokio/Cargo.toml b/streamson-tokio/Cargo.toml index 66b8dd9..a9195a1 100644 --- a/streamson-tokio/Cargo.toml +++ b/streamson-tokio/Cargo.toml @@ -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" @@ -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]