chore(version): v0.2.1

This commit is contained in:
Benedikt Peetz 2024-05-20 15:39:05 +02:00
parent 5253e59be1
commit 50c9d45cb7
Signed by: bpeetz
GPG Key ID: B6139BCB07CE946D
4 changed files with 9 additions and 5 deletions

2
Cargo.lock generated
View File

@ -291,7 +291,7 @@ dependencies = [
[[package]]
name = "trixy"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"clap",
"convert_case",

View File

@ -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"

View File

@ -25,6 +25,12 @@ If not, see <https://www.gnu.org/licenses/>.
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

View File

@ -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