From 300f0fcdd5074f1d8d96ffb5b66abcfb93ed4286 Mon Sep 17 00:00:00 2001 From: Jan Hecking Date: Fri, 11 Sep 2020 12:23:41 +0800 Subject: [PATCH] Bump version to v0.6 & update changelog --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb78b480..93e7a06a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.6.0] - 2020-09-11 + +* **Bug Fixes** + * Shrink connection buffers to avoid unbounded memory allocation. [(#83)](https://github.com/aerospike/aerospike-client-rust/pull/83) Thanks to [@soro](https://github.com/soro)! + +* **New Features** + * Big update for operations: [(#79)](https://github.com/aerospike/aerospike-client-rust/pull/71) Thanks to [@jonas32](https://github.com/jonas32)! + * Added operation contexts for nested operations. + * Added missing list operations, list policies, and ordered lists. + * Added missing map operations. + * Added bitwise operations. + * CAUTION: This is a breaking change. The policy and return types for Lists require additional parameters for the cdt op functions. + +* **Updates** + * Restrict Travis CI tests to stable/beta/nightly. [(#84)](https://github.com/aerospike/aerospike-client-rust/pull/84) + ## [0.5.0] - 2020-07-30 * **Bug Fixes** diff --git a/Cargo.toml b/Cargo.toml index d7893c04..b4ab91b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aerospike" -version = "0.5.0" +version = "0.6.0" edition = "2018" authors = ["Khosrow Afroozeh ", "Jan Hecking "] description = "Aerospike Client for Rust" diff --git a/src/lib.rs b/src/lib.rs index c57aedce..570d7fa8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -55,7 +55,7 @@ //! //! ```text //! [dependencies] -//! aerospike = "0.5.0" +//! aerospike = "0.6.0" //! ``` //! //! # Examples