diff --git a/Cargo.toml b/Cargo.toml index 8a3de7c..234d810 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native_db" -version = "0.5.2" +version = "0.5.3" 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.2", path = "native_db_macro" } +native_db_macro = { version = "0.5.3", path = "native_db_macro" } thiserror = "1.0" serde = { version = "1.0" } native_model = { version = "0.4.6" } diff --git a/README.md b/README.md index 84bb557..135c93e 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,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.2" +native_db = "0.5.3" native_model = "0.4.6" ``` diff --git a/native_db_macro/Cargo.toml b/native_db_macro/Cargo.toml index 2141ad9..c411c8e 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.2" +version = "0.5.3" authors = ["Vincent Herlemont "] edition = "2018" description = "A procedural macro for native_db"