Skip to content

Commit

Permalink
Merge branch 'master' into sqlx-0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 committed Aug 6, 2024
2 parents a709e34 + b650684 commit 4f40d96
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
17 changes: 9 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 0.15.0 - Pending
## 0.15.0 - 2024-08-02

### Versions

+ `0.15.0-rc.1`: 2024-01-31
+ `0.15.0-rc.2`: 2024-02-02
+ `0.15.0-rc.3`: 2024-03-15
+ `0.15.0-rc.4`: 2024-03-24
+ `0.15.0-rc.5`: 2024-05-02
+ `0.15.0-rc.6`: 2024-05-03
+ `0.15.0-rc.7`: 2024-06-19
+ `sea-schema`/`0.15.0-rc.1`: 2024-01-31
+ `sea-schema`/`0.15.0-rc.2`: 2024-02-02
+ `sea-schema`/`0.15.0-rc.3`: 2024-03-15
+ `sea-schema`/`0.15.0-rc.4`: 2024-03-24
+ `sea-schema`/`0.15.0-rc.5`: 2024-05-02
+ `sea-schema`/`0.15.0-rc.6`: 2024-05-03
+ `sea-schema`/`0.15.0-rc.7`: 2024-06-19
+ `sea-schema-derive`/`0.3.0`: 2024-08-02

### Features

Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [

[package]
name = "sea-schema"
version = "0.15.0-rc.7"
version = "0.15.0"
authors = [ "Chris Tsang <tyt2y7@gmail.com>" ]
edition = "2021"
description = "🌿 SQL schema definition and discovery"
Expand All @@ -35,9 +35,9 @@ path = "src/lib.rs"

[dependencies]
futures = { version = "0.3", default-features = false, optional = true, features = ["alloc"] }
sea-schema-derive = { version = "0.2.0", path = "sea-schema-derive", default-features = false }
sea-query = { version = "0.31.0-rc.8", default-features = false, features = ["derive"] }
sea-query-binder = { version = "0.6.0-rc.4", default-features = false, optional = true }
sea-schema-derive = { version = "0.3.0", path = "sea-schema-derive", default-features = false }
sea-query = { version = "0.31.0", default-features = false, features = ["derive"] }
sea-query-binder = { version = "0.6.0", default-features = false, optional = true }
serde = { version = "1", default-features = false, optional = true, features = ["derive"] }
sqlx = { version = "0.8", default-features = false, optional = true }
log = { version = "0.4", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion sea-schema-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-schema-derive"
version = "0.2.0"
version = "0.3.0"
authors = [ "Chris Tsang <tyt2y7@gmail.com>" ]
edition = "2018"
description = "Derive macro for sea-schema's Name trait"
Expand Down

0 comments on commit 4f40d96

Please sign in to comment.