summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Woolcock <paul@woolcock.us>2020-06-08 14:48:39 -0400
committerPaul Woolcock <paul@woolcock.us>2020-06-08 14:48:39 -0400
commit17c727f5c615eed921d0095d1b6f49e44024025d (patch)
tree8b44a500317f29a7adcb110cf011c2ea8a66386e
parenta59ad95188771b58bcba08b2c3252cdc890701b6 (diff)
Update version to 0.22
-rw-r--r--Cargo.toml2
-rw-r--r--README.md4
-rw-r--r--src/helpers/mod.rs6
3 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 6a549ba..2212631 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "elefren"
-version = "0.21.0"
+version = "0.22.0"
description = "A wrapper around the Mastodon API."
authors = ["Aaron Power <theaaronepower@gmail.com>", "Paul Woolcock <paul@woolcock.us>"]
license = "MIT/Apache-2.0"
diff --git a/README.md b/README.md
index 66c4bea..55bf18f 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ To add `elefren` to your project, add the following to the
`[dependencies]` section of your `Cargo.toml`
```toml
-elefren = "0.20"
+elefren = "0.22"
```
## Example
@@ -28,7 +28,7 @@ In your `Cargo.toml`, make sure you enable the `toml` feature:
```toml
[dependencies]
-elefren = { version = "0.20", features = ["toml"] }
+elefren = { version = "0.22", features = ["toml"] }
```
```rust,no_run
diff --git a/src/helpers/mod.rs b/src/helpers/mod.rs
index d1c420e..57357b7 100644
--- a/src/helpers/mod.rs
+++ b/src/helpers/mod.rs
@@ -5,7 +5,7 @@
///
/// ```toml,ignore
/// [dependencies.elefren]
-/// version = "0.18"
+/// version = "0.22"
/// features = ["toml"]
/// ```
pub mod toml;
@@ -17,7 +17,7 @@ pub mod toml;
///
/// ```toml,ignore
/// [dependencies.elefen]
-/// version = "0.18"
+/// version = "0.22"
/// features = ["json"]
/// ```
pub mod json;
@@ -29,7 +29,7 @@ pub mod json;
///
/// ```toml,ignore
/// [dependencies.elefren]
-/// version = "0.18"
+/// version = "0.22"
/// features = ["env"]
/// ```
pub mod env;