Skip to content

Commit

Permalink
prepare 0.4.0
Browse files Browse the repository at this point in the history
Signed-off-by: Ankur Srivastava <[email protected]>
  • Loading branch information
ansrivas committed Jan 8, 2021
1 parent a041b36 commit 2c755b2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

## 0.4.0
Changes
- Support billing_group apis

## 0.3.0
Changes:
- Support account, tickets and mirror-maker apis.
Expand All @@ -9,17 +13,14 @@ Changes:
- Use async-compat to run reqwest on other executors

## 0.2.2

Changes:
- Upgraded smol example

## 0.2.1

Changes:
- Fixed the smol example

## 0.2.0

Changes:
- Made user::types public
- Fixed user::create doc test w.r.t types import path
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT"
name = "aiven_rs"
readme = "README.md"
repository = "https://github.com/ansrivas/aiven-rs"
version = "0.3.0"
version = "0.4.0"
include = [
"**/*.rs",
"Cargo.toml",
Expand Down
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@
## Resources

- Build Status on other [platforms](./BUILD_STATUS.md)
- Majority of the end points from https://api.aiven.io/doc/ have been implemented as of [17.04.2020]
- Majority of the end points from https://api.aiven.io/doc/ have been implemented as of [07.01.2021]
- [Documentation](https://docs.rs/aiven-rs)
- Minimum supported Rust version: 1.42 or later

## Getting Started

```rust
// tokio = "0.2"
// aiven_rs = "0.3.0"
// tokio = "1.0"
// aiven_rs = "0.4.0"

use aiven_rs::{cloud::types::ResClouds, AivenClient};

Expand All @@ -48,9 +47,7 @@ async fn main() {
}
}
```

## License

This project is licensed under

- MIT license ([LICENSE-MIT](LICENSE) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT))
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ pub mod cloud;
pub mod key_mgmt;
pub mod payment;
pub mod project;
mod response;
pub mod service;
mod testutil;
pub mod ticket;
Expand Down

0 comments on commit 2c755b2

Please sign in to comment.