Skip to content

Commit

Permalink
chore: update version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Oct 12, 2024
1 parent a866355 commit 2efe7a8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "native_db"
version = "0.7.1"
version = "0.8.0"
authors = ["Vincent Herlemont <[email protected]>"]
edition = "2021"
description = "Drop-in embedded database"
Expand All @@ -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.7.1", path = "native_db_macro" }
native_db_macro = { version = "0.8.0", path = "native_db_macro" }
thiserror = "1.0"
serde = { version = "1.0" }
native_model = { version = "0.4.20" }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ 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.7.1"
native_model = "0.4.19"
native_db = "0.8.0"
native_model = "0.4.20"
```

NOTE: `native_db` requires `native_model` to work.
Expand Down
2 changes: 1 addition & 1 deletion native_db_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "native_db_macro"
version = "0.7.1"
version = "0.8.0"
authors = ["Vincent Herlemont <[email protected]>"]
edition = "2018"
description = "A procedural macro for native_db"
Expand Down
2 changes: 1 addition & 1 deletion src/metadata/current_version.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub const CURRENT_VERSION: &str = "0.7.1";
pub const CURRENT_VERSION: &str = "0.8.0";
pub const CURRENT_NATIVE_MODEL_VERSION: &str = "0.4.19";

0 comments on commit 2efe7a8

Please sign in to comment.