From 098fed99a232d255832a6bd2b5ef8ea959f835f0 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 14 Oct 2024 19:56:11 +0000 Subject: [PATCH] chore: update version to 0.8.1 --- Cargo.toml | 4 ++-- README.md | 2 +- native_db_macro/Cargo.toml | 2 +- src/metadata/current_version.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 29e73a6c..7aff142a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native_db" -version = "0.8.0" +version = "0.8.1" authors = ["Vincent Herlemont "] edition = "2021" description = "Drop-in embedded database" @@ -17,7 +17,7 @@ members = ["native_db_macro"] [dependencies] redb = "2.1.4" redb1 = { version = "=1.5.1", package = "redb", optional = true } -native_db_macro = { version = "0.8.0", path = "native_db_macro" } +native_db_macro = { version = "0.8.1", path = "native_db_macro" } thiserror = "1.0" serde = { version = "1.0" } native_model = { version = "0.4.20" } diff --git a/README.md b/README.md index 4b786a3d..31d1f7f7 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Here's a drop-in, fast, embedded database for multi-platform apps (server, deskt Add this to your `Cargo.toml`: ```toml [dependencies] -native_db = "0.8.0" +native_db = "0.8.1" native_model = "0.4.20" ``` diff --git a/native_db_macro/Cargo.toml b/native_db_macro/Cargo.toml index e3329617..5a993da2 100644 --- a/native_db_macro/Cargo.toml +++ b/native_db_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native_db_macro" -version = "0.8.0" +version = "0.8.1" authors = ["Vincent Herlemont "] edition = "2018" description = "A procedural macro for native_db" diff --git a/src/metadata/current_version.rs b/src/metadata/current_version.rs index 92510029..4eda6081 100644 --- a/src/metadata/current_version.rs +++ b/src/metadata/current_version.rs @@ -1,2 +1,2 @@ -pub const CURRENT_VERSION: &str = "0.8.0"; +pub const CURRENT_VERSION: &str = "0.8.1"; pub const CURRENT_NATIVE_MODEL_VERSION: &str = "0.4.19";