Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Oct 30, 2022
1 parent 39ced31 commit 3cc75d8
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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.2.0 - 2022-10-31



## 0.1.2 - 2022-09-17

* Updated sea-schema to 0.9.4 #62
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [

[package]
name = "seaography"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.60"
authors = ["Panagiotis Karatakis <[email protected]>"]
Expand All @@ -23,7 +23,7 @@ categories = ["database"]

[dependencies]
async-graphql = { version = "4.0.12", default-features = false }
seaography-derive = { version = "^0.1", path = "./derive" }
seaography-derive = { version = "^0.2.0", path = "./derive" }
sea-orm = { version = "^0.9", default-features = false }
itertools = { version = "0.10.3" }
heck = { version = "0.4.0" }
Expand Down
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "seaography-cli"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
rust-version = "1.60"
authors = ["Panagiotis Karatakis <[email protected]>"]
Expand All @@ -15,6 +15,6 @@ categories = ["database"]
[dependencies]
async-std = { version = "1.12.0", features = [ "attributes", "tokio1" ] }
clap = { version = "3.2.20", features = ["derive"] }
seaography-generator = { version = "^0.1.1", path = "../generator" }
seaography-discoverer = { version = "^0.1.1", path = "../discoverer" }
seaography-generator = { version = "^0.2.0", path = "../generator" }
seaography-discoverer = { version = "^0.2.0", path = "../discoverer" }
url = "2.2.2"
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "seaography-derive"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.60"
authors = ["Panagiotis Karatakis <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion discoverer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "seaography-discoverer"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
rust-version = "1.60"
authors = ["Panagiotis Karatakis <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion examples/mysql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = '2021'
name = 'seaography-mysql-example'
version = '0.1.0'
version = '0.2.0'

[dependencies]
async-graphql = { version = "4.0.10", features = ["decimal", "chrono", "dataloader"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = '2021'
name = 'seaography-postgres-example'
version = '0.1.0'
version = '0.2.0'

[dependencies]
async-graphql = { version = "4.0.10", features = ["decimal", "chrono", "dataloader"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = '2021'
name = 'seaography-sqlite-example'
version = '0.1.0'
version = '0.2.0'

[dependencies]
async-graphql = { version = "4.0.14", features = ["decimal", "chrono", "dataloader"] }
Expand Down
2 changes: 1 addition & 1 deletion generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "seaography-generator"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
rust-version = "1.60"
authors = ["Panagiotis Karatakis <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion generator/src/_Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = '2021'
name = '<seaography-package-name>'
version = '0.1.0'
version = '0.2.0'

[dependencies]
async-graphql = { version = "4.0.14", features = ["decimal", "chrono", "dataloader"] }
Expand Down

0 comments on commit 3cc75d8

Please sign in to comment.