Skip to content

Commit

Permalink
Version bump and CHANGELOG for 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bradfier committed Jul 1, 2019
1 parent ab50170 commit 7d1b9bb
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,31 @@ Upcoming Changes
* Rendezvous Request / Reply
* Rendezvous Distributed Queues

`0.5.0`_ (2019-07-01)
---------------------

New Features
~~~~~~~~~~~~

* Rendezvous Request / Response (with Async support)

See `async_client.rs <https://github.com/bradfier/tibrv-rs/blob/master/examples/async_client.rs>`_
and `async_server.rs <https://github.com/bradfier/tibrv-rs/blob/master/examples/async_server.rs>`_
for usage examples.

Bug Fixes
~~~~~~~~~

* A number of lifetime issues have been cleaned up in `Msg` and `MsgField`
thanks to @pfernie
* Async queues no longer leak two words every time they are dropped.

Breaking Changes
~~~~~~~~~~~~~~~~

* Async `Stream` and `Sink` use `TibrvError` to indicate fault conditions rather
than a blanket `io::Error`.

`0.4.0`_ (2018-07-18)
---------------------

Expand Down Expand Up @@ -59,6 +84,7 @@ Initial public release.
* First usable release on `crates.io <https://crates.io/crates/tibrv>`_.


.. _`0.5.0`: https://github.com/bradfier/tibrv-rs/compare/v0.4.0...v0.5.0
.. _`0.4.0`: https://github.com/bradfier/tibrv-rs/compare/v0.3.0...v0.4.0
.. _`0.3.0`: https://github.com/bradfier/tibrv-rs/compare/v0.2.0...v0.3.0
.. _`0.2.0`: https://github.com/bradfier/tibrv-rs/compare/v0.1.1...v0.2.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tibrv"
version = "0.4.0"
version = "0.5.0"
authors = ["Richard Bradfield <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -21,7 +21,7 @@ travis-ci = { repository = "bradfier/tibrv-rs" }
chrono = "0.4"
failure = "^0.1"
failure_derive = "^0.1"
tibrv-sys = { version = "0.4.0", path = "tibrv-sys" }
tibrv-sys = { version = "0.5.0", path = "tibrv-sys" }
tokio = { version = "^0.1.3", optional = true }
mio = { version = "0.6.14", optional = true }
futures = { version = "0.1.18", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion tibrv-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tibrv-sys"
version = "0.4.0"
version = "0.5.0"
authors = ["Richard Bradfield <[email protected]>"]
links = "tibrv"
build = "build.rs"
Expand Down

0 comments on commit 7d1b9bb

Please sign in to comment.