Skip to content

Commit

Permalink
Release 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowneee committed Aug 23, 2023
1 parent 19ee544 commit d92b4ec
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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] - XXXX-XX-XX
## [0.0.7] - 2023-08-24
### Added
- Support for preparing and executing SQL queries.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tarantool-rs"
description = "Asyncronous tokio-based client for Tarantool"
version = "0.0.6"
version = "0.0.7"
edition = "2021"
authors = ["Andrey Kononov [email protected]"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/codec/request/prepare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::io::Write;
use crate::{
codec::{
consts::{keys, RequestType},
utils::{write_kv_str},
utils::write_kv_str,
},
errors::EncodingError,
};
Expand Down
1 change: 0 additions & 1 deletion src/utils/deser.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use rmpv::Value;
use serde::de::DeserializeOwned;


use crate::{codec::consts::keys, errors::DecodingError};

pub fn value_to_map(value: Value) -> Result<Vec<(Value, Value)>, DecodingError> {
Expand Down

0 comments on commit d92b4ec

Please sign in to comment.