Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Sep 12, 2022
1 parent 86c138f commit 8e5dcc9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.1.1 - 2022-09-12

* Replace HashMap with BTreeMap #53
* Decouple discoverer from generator #54

## 0.1.0 - 2022-09-12

* Initial release
8 changes: 4 additions & 4 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.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.60"
authors = ["Panagiotis Karatakis <[email protected]>"]
Expand All @@ -12,8 +12,8 @@ keywords = ["async", "graphql", "mysql", "postgres", "sqlite"]
categories = ["database"]

[dependencies]
seaography-generator = { version = "^0.1", path = "../generator" }
clap = { version = "3.2.20", features = ["derive"] }
async-std = { version = "1.12.0", features = [ "attributes", "tokio1" ] }
seaography-discoverer = { version = "^0.1", path = "../discoverer" }
clap = { version = "3.2.20", features = ["derive"] }
seaography-generator = { version = "^0.1.1", path = "../generator" }
seaography-discoverer = { version = "^0.1.1", path = "../discoverer" }
url = "2.2.2"
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.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.60"
authors = ["Panagiotis Karatakis <[email protected]>"]
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.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.60"
authors = ["Panagiotis Karatakis <[email protected]>"]
Expand Down

0 comments on commit 8e5dcc9

Please sign in to comment.