From 798e4326279eba7ba22c1cff49012c32d093bcf5 Mon Sep 17 00:00:00 2001 From: Nikita Pekin Date: Sat, 17 Dec 2016 22:15:03 -0500 Subject: [PATCH] chore: cut release 0.2.1 Update `CHANGELOG.md`. Update `README.md`. Cut release 0.2.1. --- CHANGELOG.md | 25 +++++++++++++++++++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 416f7dc..a250615 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ + +## v0.3.0 (2016-12-18) + + +#### Features + +* add custom deserializer for `States` ([872366d2](https://github.com/indiv0/wolfram-alpha-rs/commit/872366d2e3468d3555c04b3a0b87971faccee8bf)) +* add `Notes` struct and `Note` type ([8b9e53f8](https://github.com/indiv0/wolfram-alpha-rs/commit/8b9e53f8309fafc63efd564e2b363ac151468e46)) + +#### Breaking Changes + +* change `QueryResult` field types ([468be31e](https://github.com/indiv0/wolfram-alpha-rs/commit/468be31e34fd1c531190e2954670dfb314c12388), breaks [#](https://github.com/indiv0/wolfram-alpha-rs/issues/)) +* rename `error` field to `error_flag` ([93f2f2fb](https://github.com/indiv0/wolfram-alpha-rs/commit/93f2f2fb59b53286fe292ab2167b4b45d3f905d3), breaks [#](https://github.com/indiv0/wolfram-alpha-rs/issues/)) + +#### Bug Fixes + +* change `QueryResult` field types ([468be31e](https://github.com/indiv0/wolfram-alpha-rs/commit/468be31e34fd1c531190e2954670dfb314c12388), breaks [#](https://github.com/indiv0/wolfram-alpha-rs/issues/)) + +#### Improvements + +* add `error` field to `QueryResult` ([d79ed2e0](https://github.com/indiv0/wolfram-alpha-rs/commit/d79ed2e06f1863073cf804ef4d243c1f8e5e8b22)) +* rename `error` field to `error_flag` ([93f2f2fb](https://github.com/indiv0/wolfram-alpha-rs/commit/93f2f2fb59b53286fe292ab2167b4b45d3f905d3), breaks [#](https://github.com/indiv0/wolfram-alpha-rs/issues/)) + + + ## v0.2.1 (2016-12-16) diff --git a/Cargo.toml b/Cargo.toml index 3addf5e..0a815c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wolfram_alpha" -version = "0.2.1" +version = "0.3.0" authors = ["Nikita Pekin "] description = "A library providing Rust bindings for the Wolfram|Alpha API" repository = "https://github.com/indiv0/wolfram-alpha-rs" diff --git a/README.md b/README.md index 3af0472..a89b85d 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -wolfram_alpha = "0.2" +wolfram_alpha = "0.3" ``` And in your `lib.rs` or `main.rs`: