Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRustifyer committed Apr 13, 2023
1 parent 8c37ef2 commit 61a854a
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion canyon_connection/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "canyon_connection"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
documentation = "https://zerodaycode.github.io/canyon-book/"
homepage = "https://github.com/zerodaycode/Canyon-SQL"
Expand Down
4 changes: 2 additions & 2 deletions canyon_crud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "canyon_crud"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
documentation = "https://zerodaycode.github.io/canyon-book/"
homepage = "https://github.com/zerodaycode/Canyon-SQL"
Expand All @@ -12,4 +12,4 @@ description = "A Rust ORM and QueryBuilder"
chrono = { version = "0.4", features = ["serde"] }
async-trait = { version = "0.1.50" }

canyon_connection = { version = "0.1.2", path = "../canyon_connection" }
canyon_connection = { version = "0.2.0", path = "../canyon_connection" }
8 changes: 4 additions & 4 deletions canyon_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "canyon_macros"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
documentation = "https://zerodaycode.github.io/canyon-book/"
homepage = "https://github.com/zerodaycode/Canyon-SQL"
Expand All @@ -18,6 +18,6 @@ proc-macro2 = "1.0.27"
futures = "0.3.21"
tokio = { version = "1.9.0", features = ["full"] }

canyon_observer = { version = "0.1.2", path = "../canyon_observer" }
canyon_crud = { version = "0.1.2", path = "../canyon_crud" }
canyon_connection = { version = "0.1.2", path = "../canyon_connection" }
canyon_observer = { version = "0.2.0", path = "../canyon_observer" }
canyon_crud = { version = "0.2.0", path = "../canyon_crud" }
canyon_connection = { version = "0.2.0", path = "../canyon_connection" }
6 changes: 3 additions & 3 deletions canyon_observer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "canyon_observer"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
documentation = "https://zerodaycode.github.io/canyon-book/"
homepage = "https://github.com/zerodaycode/Canyon-SQL"
Expand All @@ -23,5 +23,5 @@ quote = "1.0.9"
partialdebug = "0.2.0"

# Internal dependencies
canyon_crud = { version = "0.1.2", path = "../canyon_crud" }
canyon_connection = { version = "0.1.2", path = "../canyon_connection" }
canyon_crud = { version = "0.2.0", path = "../canyon_crud" }
canyon_connection = { version = "0.2.0", path = "../canyon_connection" }
10 changes: 5 additions & 5 deletions canyon_sql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "canyon_sql"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
authors = ["Alex Vergara<pyzyryab@tutanota.com>, Gonzalo Busto<gbm25@gmail.com>"]
documentation = "https://zerodaycode.github.io/canyon-book/"
Expand All @@ -13,7 +13,7 @@ description = "A Rust ORM and QueryBuilder"
async-trait = { version = "0.1.50" }

# Project crates
canyon_macros = { version = "0.1.2", path = "../canyon_macros" }
canyon_observer = { version = "0.1.2", path = "../canyon_observer" }
canyon_crud = { version = "0.1.2", path = "../canyon_crud" }
canyon_connection = { version = "0.1.2", path = "../canyon_connection" }
canyon_macros = { version = "0.2.0", path = "../canyon_macros" }
canyon_observer = { version = "0.2.0", path = "../canyon_observer" }
canyon_crud = { version = "0.2.0", path = "../canyon_crud" }
canyon_connection = { version = "0.2.0", path = "../canyon_connection" }
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tests"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
publish = false

Expand Down

0 comments on commit 61a854a

Please sign in to comment.