Skip to content

Commit

Permalink
Bump version patch to 0.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtbuilds committed Nov 11, 2023
1 parent 6887370 commit d983aff
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
12 changes: 7 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion attr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ormlite-attr"
version = "0.17.1"
version = "0.17.2"
edition = "2021"
description = "See `ormlite`."
authors = ["Kurt Wolf <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ormlite-cli"
version = "0.17.1"
version = "0.17.2"
edition = "2021"
description = "An ORM for people who love SQL. Use the `ormlite` crate, not this one."
authors = ["Kurt Wolf <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ormlite-core"
version = "0.17.1"
version = "0.17.2"
edition = "2021"
description = "An ORM for people who love SQL. Use the `ormlite` crate, not this one."
authors = ["Kurt Wolf <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ormlite-macro"
version = "0.17.1"
version = "0.17.2"
edition = "2021"
description = "An ORM for people who love SQL. Use the `ormlite` crate, not this one."
authors = ["Kurt Wolf <[email protected]>"]
Expand All @@ -24,7 +24,7 @@ default-mysql = ["mysql"]
syn = { version = "2", features = ["derive", "parsing"] }
quote = "1"
proc-macro2 = "1"
ormlite-core = { path = "../core", version = "0.17.1"}
ormlite-core = { path = "../core", version = "0.17.2"}
ormlite-attr = { path = "../attr", version = "0.17" }
sqlx = "0.7"
lazy_static = "1"
Expand Down
6 changes: 3 additions & 3 deletions ormlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ormlite"
version = "0.17.1"
version = "0.17.2"
edition = "2021"
authors = ["Kurt Wolf <[email protected]>"]
description = "An ORM for people who love SQL"
Expand Down Expand Up @@ -49,8 +49,8 @@ default-mysql = ["mysql", "ormlite-macro/default-mysql"]
[dependencies]
sqlx = { version = "0.7" }
tokio = { version = "1.24.1", features = ["full"] }
ormlite-macro = { path = "../macro" , version = "0.17.1"}
ormlite-core = { path = "../core" , version = "0.17.1"}
ormlite-macro = { path = "../macro" , version = "0.17.2"}
ormlite-core = { path = "../core" , version = "0.17.2"}
sqlx-core = "0.7"
sqlmo = "0.16"
tokio-stream = "0.1.14"
Expand Down

0 comments on commit d983aff

Please sign in to comment.