chore(version): v0.2.1
This commit is contained in:
parent
5253e59be1
commit
50c9d45cb7
|
@ -291,7 +291,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "trixy"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"convert_case",
|
||||
|
|
|
@ -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"
|
||||
|
|
6
NEWS.md
6
NEWS.md
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Reference in New Issue