Skip to content

Commit 38778e6

Browse files
committed
chore: cut release 0.3.0
Update README. Update CHANGELOG. Cut release 0.3.0. Update keywords in Cargo.toml.
1 parent eafd37a commit 38778e6

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="v0.4.0"></a>
2+
## v0.4.0 (2017-11-21)
3+
4+
5+
#### Improvements
6+
7+
* switch to async API ([b6d2e9a2](https://github.com/indiv0/wolfram-alpha-rs/commit/b6d2e9a26dd2261a9bf3b2c530e0d3f85bd7ff56))
8+
* remove unnecessary mut ([29858ced](https://github.com/indiv0/wolfram-alpha-rs/commit/29858ced9730c372eaea04cddc0eb135f402e2ce))
9+
* replace `try!` with `?` ([d7059a30](https://github.com/indiv0/wolfram-alpha-rs/commit/d7059a300b13609a88b4bbfa626af65b67559265))
10+
11+
12+
113
<a name="v0.3.0"></a>
214
## v0.3.0 (2016-12-18)
315

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wolfram_alpha"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Nikita Pekin <contact@nikitapek.in>"]
55
description = "A library providing Rust bindings for the Wolfram|Alpha API"
66
repository = "https://github.com/indiv0/wolfram-alpha-rs"
@@ -9,9 +9,10 @@ readme = "README.md"
99
keywords = [
1010
"wolfram",
1111
"alpha",
12+
"async",
1213
"API",
13-
"web",
1414
"library",
15+
"web",
1516
]
1617
license = "MIT/Apache-2.0"
1718
include = [

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Add the following to your `Cargo.toml`:
3030

3131
```toml
3232
[dependencies]
33-
wolfram_alpha = "0.3"
33+
wolfram_alpha = "0.4"
3434
```
3535

3636
And in your `lib.rs` or `main.rs`:
@@ -39,7 +39,8 @@ And in your `lib.rs` or `main.rs`:
3939
extern crate wolfram_alpha;
4040
```
4141

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

4445
## Contributing
4546

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

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

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

0 commit comments

Comments
 (0)