diff --git a/Cargo.toml b/Cargo.toml index df6608d..2488bb7 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 6ee4ec5..f2a631c 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 faeebb6..fe24143 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"