From c8006b2710c36ab529ab8ae59a3c28ae605f276a Mon Sep 17 00:00:00 2001 From: Andrey Kononov Date: Tue, 5 Sep 2023 01:12:43 +0400 Subject: [PATCH] Release 0.0.8 --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 836d5e4..e3af3c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] - 2023-09-04 +## [0.0.8] - 2023-09-05 ### Added - Data-manipulation operations (insert, update, upsert, replace, delete) now return `DmoResponse` with row, returned by operation ([#7](https://github.com/Flowneee/tarantool-rs/issues/7)); - - `TupleElement` type, which allow to write type into `Tuple` without having `serde::Serialize` implemented for it; + - `TupleElement` trait, which allow to write type into `Tuple` without having `serde::Serialize` implemented for it; - `DmoOperation` for constructing operations in `update` and `upsert` calls. ### Changed diff --git a/Cargo.toml b/Cargo.toml index 92d6733..535c1b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tarantool-rs" description = "Asyncronous tokio-based client for Tarantool" -version = "0.0.7" +version = "0.0.8" edition = "2021" authors = ["Andrey Kononov flowneee3@gmail.com"] license = "MIT"