Browse Source

Prepare the v0.1.2 release.

master
Weird Constructor 2 years ago
parent
commit
1fc09b415e
  1. 36
      CHANGELOG.md
  2. 2
      Cargo.toml

36
CHANGELOG.md

@ -1,15 +1,21 @@
0.1.1 (2019-06-14)
==================
* Incompatible change: gtp::ResponseParser::get_response returns Result<> now.
* Incompatible change: gtp::Error renamed to gtp::ResponseError.
* Feature: Added gtp::Response::entities() for parsing response entities.
* Feature: Added detached_command module for starting processes and
communicate with them non-blocking.
* Change: Implement ToString and Display traits for Entity.
* Bugfix: Parsing was broken, involving comments.
0.1.0 (2019-06-12)
==================
* Initial version.
0.1.2 (2021-08-11)
==================
* Feature: Added gtp::controller and fixed the test cases.
* Change: Improved documentation.
0.1.1 (2019-06-14)
==================
* Incompatible change: gtp::ResponseParser::get\_response returns Result<> now.
* Incompatible change: gtp::Error renamed to gtp::ResponseError.
* Feature: Added gtp::Response::entities() for parsing response entities.
* Feature: Added detached\_command module for starting processes and
communicate with them non-blocking.
* Change: Implement ToString and Display traits for Entity.
* Bugfix: Parsing was broken, involving comments.
0.1.0 (2019-06-12)
==================
* Initial version.

2
Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "gtp"
version = "0.1.1"
version = "0.1.2"
authors = ["Weird Constructor <weirdconstructor@gmail.com>"]
edition = "2018"
license = "GPL-3.0-or-later"

Loading…
Cancel
Save