Skip to content

Commit 36ae6f3

Browse files
committed
release: v0.8.0
1 parent d3e38cf commit 36ae6f3

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88

99
[package]
1010
name = "dbrest"
11-
version = "0.7.0"
11+
version = "0.8.0"
1212
edition = "2024"
1313
rust-version = "1.91"
1414
description = "dbrest — high-performance REST API for PostgreSQL, written in Rust"
@@ -19,9 +19,9 @@ categories = ["web-programming::http-server", "database"]
1919

2020
[dependencies]
2121
# Workspace crates
22-
dbrest-core = { path = "crates/dbrest-core", version = "0.7.0" }
23-
dbrest-postgres = { path = "crates/dbrest-postgres", version = "0.7.0" }
24-
dbrest-sqlite = { path = "crates/dbrest-sqlite", version = "0.7.0" }
22+
dbrest-core = { path = "crates/dbrest-core", version = "0.8.0" }
23+
dbrest-postgres = { path = "crates/dbrest-postgres", version = "0.8.0" }
24+
dbrest-sqlite = { path = "crates/dbrest-sqlite", version = "0.8.0" }
2525

2626
# Core async runtime
2727
tokio = { version = "1", features = ["full"] }

crates/dbrest-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dbrest-core"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2024"
55
rust-version = "1.91"
66
description = "Database-agnostic core for the dbrest REST API"

crates/dbrest-postgres/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dbrest-postgres"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2024"
55
rust-version = "1.91"
66
description = "PostgreSQL backend for the dbrest REST API"
@@ -10,7 +10,7 @@ keywords = ["rest", "api", "database", "postgres"]
1010
categories = ["web-programming::http-server", "database"]
1111

1212
[dependencies]
13-
dbrest-core = { path = "../dbrest-core", version = "0.7.0" }
13+
dbrest-core = { path = "../dbrest-core", version = "0.8.0" }
1414

1515
# Database
1616
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "json", "macros"] }

crates/dbrest-sqlite/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dbrest-sqlite"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2024"
55
rust-version = "1.91"
66
description = "SQLite backend for the dbrest REST API"
@@ -10,7 +10,7 @@ keywords = ["rest", "api", "database", "sqlite"]
1010
categories = ["web-programming::http-server", "database"]
1111

1212
[dependencies]
13-
dbrest-core = { path = "../dbrest-core", version = "0.7.0" }
13+
dbrest-core = { path = "../dbrest-core", version = "0.8.0" }
1414

1515
# Database
1616
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "json"] }

0 commit comments

Comments
 (0)