Skip to content

Commit 987cb38

Browse files
committed
1.0.0-rc.5
1 parent f3ff417 commit 987cb38

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## 1.0.0-rc.5 - Pending
8+
## 1.0.0-rc.5 - 2024-05-29
99

1010
### New Features
1111

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
33

44
[package]
55
name = "sea-orm"
6-
version = "1.0.0-rc.4"
6+
version = "1.0.0-rc.5"
77
authors = ["Chris Tsang <[email protected]>"]
88
edition = "2021"
99
description = "🐚 An async & dynamic ORM for Rust"
@@ -33,7 +33,7 @@ log = { version = "0.4", default-features = false }
3333
tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
3434
rust_decimal = { version = "1", default-features = false, optional = true }
3535
bigdecimal = { version = "0.3", default-features = false, optional = true }
36-
sea-orm-macros = { version = "1.0.0-rc.4", path = "sea-orm-macros", default-features = false, features = ["strum"] }
36+
sea-orm-macros = { version = "1.0.0-rc.5", path = "sea-orm-macros", default-features = false, features = ["strum"] }
3737
sea-query = { version = "0.31.0-rc", default-features = false, features = ["thread-safe", "hashable-value", "backend-mysql", "backend-postgres", "backend-sqlite"] }
3838
sea-query-binder = { version = "0.6.0-rc", default-features = false, optional = true }
3939
strum = { version = "0.26", default-features = false }

sea-orm-cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "sea-orm-cli"
6-
version = "1.0.0-rc.4"
6+
version = "1.0.0-rc.5"
77
authors = [
88
"Chris Tsang <[email protected]>",
99
"Billy Chan <[email protected]>",
@@ -37,7 +37,7 @@ required-features = ["cli", "codegen"]
3737
clap = { version = "4.3", features = ["env", "derive"], optional = true }
3838
dotenvy = { version = "0.15", default-features = false, optional = true }
3939
async-std = { version = "1.9", default-features = false, features = ["attributes", "tokio1"], optional = true }
40-
sea-orm-codegen = { version = "=1.0.0-rc.4", path = "../sea-orm-codegen", default-features = false, optional = true }
40+
sea-orm-codegen = { version = "=1.0.0-rc.5", path = "../sea-orm-codegen", default-features = false, optional = true }
4141
sea-schema = { version = "0.15.0-rc" }
4242
sqlx = { version = "0.7", default-features = false, features = ["mysql", "postgres"], optional = true }
4343
tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt"] }

sea-orm-codegen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sea-orm-codegen"
3-
version = "1.0.0-rc.4"
3+
version = "1.0.0-rc.5"
44
authors = ["Billy Chan <[email protected]>"]
55
edition = "2021"
66
description = "Code Generator for SeaORM"

sea-orm-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sea-orm-macros"
3-
version = "1.0.0-rc.4"
3+
version = "1.0.0-rc.5"
44
authors = [ "Billy Chan <[email protected]>" ]
55
edition = "2021"
66
description = "Derive macros for SeaORM"

sea-orm-migration/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "sea-orm-migration"
6-
version = "1.0.0-rc.4"
6+
version = "1.0.0-rc.5"
77
authors = ["Billy Chan <[email protected]>"]
88
edition = "2021"
99
description = "Migration utility for SeaORM"
@@ -23,8 +23,8 @@ path = "src/lib.rs"
2323
async-trait = { version = "0.1", default-features = false }
2424
clap = { version = "4.3", features = ["env", "derive"], optional = true }
2525
dotenvy = { version = "0.15", default-features = false, optional = true }
26-
sea-orm = { version = "1.0.0-rc.4", path = "../", default-features = false, features = ["macros"] }
27-
sea-orm-cli = { version = "1.0.0-rc.4", path = "../sea-orm-cli", default-features = false, optional = true }
26+
sea-orm = { version = "1.0.0-rc.5", path = "../", default-features = false, features = ["macros"] }
27+
sea-orm-cli = { version = "1.0.0-rc.5", path = "../sea-orm-cli", default-features = false, optional = true }
2828
sea-schema = { version = "0.15.0-rc" }
2929
tracing = { version = "0.1", default-features = false, features = ["log"] }
3030
tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt"] }

0 commit comments

Comments
 (0)