From f855788cd8f4698aaa2dedb2fd07e5c0d4bd4013 Mon Sep 17 00:00:00 2001 From: Ankur Srivastava Date: Sat, 18 Apr 2020 12:37:49 +0200 Subject: [PATCH] release 0.2.0 Signed-off-by: Ankur Srivastava --- BUILD_STATUS.md | 16 ++++++++++++++++ CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- README.md | 6 ++---- 4 files changed, 24 insertions(+), 5 deletions(-) create mode 100644 BUILD_STATUS.md create mode 100644 CHANGELOG.md diff --git a/BUILD_STATUS.md b/BUILD_STATUS.md new file mode 100644 index 0000000..dd7d397 --- /dev/null +++ b/BUILD_STATUS.md @@ -0,0 +1,16 @@ +
+

Build status on other supported platforms

+

+

+ + + +![Linters](https://github.com/ansrivas/aiven-rs/workflows/Linters/badge.svg) +![Linux](https://github.com/ansrivas/aiven-rs/workflows/Linux/badge.svg) +![MacOS](https://github.com/ansrivas/aiven-rs/workflows/MacOS/badge.svg) +![Windows](https://github.com/ansrivas/aiven-rs/workflows/Windows/badge.svg) + + +

+
+
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f9682a3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +## 0.2.0 + +Changes: +- Made user::types public +- Fixed user::create doc test w.r.t types import path diff --git a/Cargo.toml b/Cargo.toml index c96296a..5b82609 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT" name = "aiven_rs" readme = "README.md" repository = "https://github.com/ansrivas/aiven-rs" -version = "0.1.0" +version = "0.2.0" include = [ "**/*.rs", "Cargo.toml", diff --git a/README.md b/README.md index 89b8815..813207c 100644 --- a/README.md +++ b/README.md @@ -9,19 +9,17 @@ -![Linters](https://github.com/ansrivas/aiven-rs/workflows/Linters/badge.svg) ![Linux](https://github.com/ansrivas/aiven-rs/workflows/Linux/badge.svg) -![MacOS](https://github.com/ansrivas/aiven-rs/workflows/MacOS/badge.svg) -![Windows](https://github.com/ansrivas/aiven-rs/workflows/Windows/badge.svg) [![Version](https://meritbadge.herokuapp.com/aiven_rs)](https://crates.io/crates/aiven_rs) [![Docs.rs](https://docs.rs/aiven_rs/badge.svg)](https://docs.rs/aiven_rs) +[![codecov](https://codecov.io/gh/ansrivas/aiven-rs/branch/master/graph/badge.svg)](https://codecov.io/gh/ansrivas/aiven-rs)


## 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] * [Documentation](https://docs.rs/aiven-rs) * Minimum supported Rust version: 1.42 or later