From 7a1a4210a45195775a0eb8d883641a0c0b0fa80e Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 19 Dec 2023 08:30:22 +0000 Subject: [PATCH] chore: update version to 0.5.1 --- Cargo.toml | 4 ++-- README.md | 2 +- native_db_macro/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index df6608db..2488bb7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native_db" -version = "0.5.0" +version = "0.5.1" authors = ["Vincent Herlemont "] edition = "2018" description = "Drop-in embedded database" @@ -16,7 +16,7 @@ members = ["native_db_macro"] [dependencies] redb = "1.4.0" -native_db_macro = { version = "0.5.0", path = "native_db_macro" } +native_db_macro = { version = "0.5.1", path = "native_db_macro" } thiserror = "1.0" serde = { version = "1.0" } native_model = { version = "0.4.2" } diff --git a/README.md b/README.md index 6ee4ec5e..f2a631cd 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,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.5.0" +native_db = "0.5.1" native_model = "0.4.2" ``` diff --git a/native_db_macro/Cargo.toml b/native_db_macro/Cargo.toml index faeebb61..fe241432 100644 --- a/native_db_macro/Cargo.toml +++ b/native_db_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native_db_macro" -version = "0.5.0" +version = "0.5.1" authors = ["Vincent Herlemont "] edition = "2018" description = "A procedural macro for native_db"