Skip to content

Commit

Permalink
chore: cut release 0.3.0
Browse files Browse the repository at this point in the history
Update README.
Update CHANGELOG.
Cut release 0.3.0.
Update keywords in Cargo.toml.
  • Loading branch information
indiv0 committed Nov 21, 2017
1 parent eafd37a commit 38778e6
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
<a name="v0.4.0"></a>
## v0.4.0 (2017-11-21)


#### Improvements

* switch to async API ([b6d2e9a2](https://github.com/indiv0/wolfram-alpha-rs/commit/b6d2e9a26dd2261a9bf3b2c530e0d3f85bd7ff56))
* remove unnecessary mut ([29858ced](https://github.com/indiv0/wolfram-alpha-rs/commit/29858ced9730c372eaea04cddc0eb135f402e2ce))
* replace `try!` with `?` ([d7059a30](https://github.com/indiv0/wolfram-alpha-rs/commit/d7059a300b13609a88b4bbfa626af65b67559265))



<a name="v0.3.0"></a>
## v0.3.0 (2016-12-18)

Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wolfram_alpha"
version = "0.3.0"
version = "0.4.0"
authors = ["Nikita Pekin <contact@nikitapek.in>"]
description = "A library providing Rust bindings for the Wolfram|Alpha API"
repository = "https://github.com/indiv0/wolfram-alpha-rs"
Expand All @@ -9,9 +9,10 @@ readme = "README.md"
keywords = [
"wolfram",
"alpha",
"async",
"API",
"web",
"library",
"web",
]
license = "MIT/Apache-2.0"
include = [
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add the following to your `Cargo.toml`:

```toml
[dependencies]
wolfram_alpha = "0.3"
wolfram_alpha = "0.4"
```

And in your `lib.rs` or `main.rs`:
Expand All @@ -39,7 +39,8 @@ And in your `lib.rs` or `main.rs`:
extern crate wolfram_alpha;
```

See the [API docs][api-docs] for information on using the crate in your library.
See the [API docs][api-docs] for information on using the crate in your library,
or take a look at an example in the [examples][examples] directory.

## Contributing

Expand All @@ -64,7 +65,8 @@ Apache License (Version 2.0).

See [LICENSE-APACHE][license-apache], and [LICENSE-MIT][license-mit] for details.

[api-docs]: https://indiv0.github.io/wolfram-alpha-rs/wolfram_alpha
[api-docs]: https://indiv0.github.io/wolfram-alpha-rs/wolfram_alpha "API Documentation"
[examples]: https://github.com/indiv0/wolfram-alpha-rs/tree/master/examples "Examples"
[contributing]: https://github.com/indiv0/wolfram-alpha-rs/blob/master/CONTRIBUTING.md "Contribution Guide"
[contributors]: https://github.com/indiv0/wolfram-alpha-rs/blob/master/CONTRIBUTORS.md "List of Contributors"
[license-apache]: https://github.com/indiv0/wolfram-alpha-rs/blob/master/LICENSE-APACHE "Apache-2.0 License"
Expand Down

0 comments on commit 38778e6

Please sign in to comment.