diff --git a/CHANGELOG.md b/CHANGELOG.md index 65702b06..9a3bed3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 36079105..4840c907 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] @@ -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" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 23afa6b7..702f1511 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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 "] @@ -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" \ No newline at end of file diff --git a/derive/Cargo.toml b/derive/Cargo.toml index e3bbcf18..1b827faf 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -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 "] diff --git a/discoverer/Cargo.toml b/discoverer/Cargo.toml index 812fbde8..305369b8 100644 --- a/discoverer/Cargo.toml +++ b/discoverer/Cargo.toml @@ -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 "] diff --git a/examples/mysql/Cargo.toml b/examples/mysql/Cargo.toml index a43fb4e2..2d16cec8 100644 --- a/examples/mysql/Cargo.toml +++ b/examples/mysql/Cargo.toml @@ -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"] } diff --git a/examples/postgres/Cargo.toml b/examples/postgres/Cargo.toml index 6b736d2a..564b9c4b 100644 --- a/examples/postgres/Cargo.toml +++ b/examples/postgres/Cargo.toml @@ -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"] } diff --git a/examples/sqlite/Cargo.toml b/examples/sqlite/Cargo.toml index a42ce9db..85ae98cf 100644 --- a/examples/sqlite/Cargo.toml +++ b/examples/sqlite/Cargo.toml @@ -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"] } diff --git a/generator/Cargo.toml b/generator/Cargo.toml index 744efe0a..f717fee5 100644 --- a/generator/Cargo.toml +++ b/generator/Cargo.toml @@ -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 "] diff --git a/generator/src/_Cargo.toml b/generator/src/_Cargo.toml index 268c74b2..093ab1a4 100644 --- a/generator/src/_Cargo.toml +++ b/generator/src/_Cargo.toml @@ -1,7 +1,7 @@ [package] edition = '2021' name = '' -version = '0.1.0' +version = '0.2.0' [dependencies] async-graphql = { version = "4.0.14", features = ["decimal", "chrono", "dataloader"] }