From 50c9d45cb765dbe19c88cd8c2bdb9eee221242fd Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 20 May 2024 15:39:05 +0200 Subject: [PATCH] chore(version): v0.2.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- NEWS.md | 6 ++++++ src/types/traits/convert_trait.rs | 4 +--- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 84b7b92..6b14bb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -291,7 +291,7 @@ dependencies = [ [[package]] name = "trixy" -version = "0.2.0" +version = "0.2.1" dependencies = [ "clap", "convert_case", diff --git a/Cargo.toml b/Cargo.toml index 0cd7493..b4aae8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ [package] name = "trixy" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "A rust crate used to generate multi-language apis for your application" license = "LGPL-3.0-or-later" diff --git a/NEWS.md b/NEWS.md index ac2862a..070ff88 100644 --- a/NEWS.md +++ b/NEWS.md @@ -25,6 +25,12 @@ If not, see . All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## v0.2.1 - 2024-05-20 +#### Bug Fixes +- **(src/types/traits/convert_trait)** Remove unneeded imports - (5253e59) - Benedikt Peetz + +- - - + ## v0.2.0 - 2024-05-20 #### Bug Fixes - **(example/main)** Update to use the new result type - (1f0b9c6) - Benedikt Peetz diff --git a/src/types/traits/convert_trait.rs b/src/types/traits/convert_trait.rs index ef4213b..4a51e2a 100644 --- a/src/types/traits/convert_trait.rs +++ b/src/types/traits/convert_trait.rs @@ -22,9 +22,7 @@ use crate::types::error::{self, TypeConversionError}; use log::warn; -use std::{ - ffi::{c_char, CString}, -}; +use std::ffi::{c_char, CString}; /// Convert a value into a data structure that we can send directly to c. pub trait Convertible