Skip to content

Commit

Permalink
🔖 bump v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Odonno committed Dec 14, 2023
1 parent 698ba25 commit 6b6aa2f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "surrealdb-migrations"
version = "1.0.0"
version = "1.0.1"
description = "An awesome SurrealDB migration tool, with a user-friendly CLI and a versatile Rust library that enables seamless integration into any project."
authors = ["David Bottiau"]
repository = "https://github.com/Odonno/surrealdb-migrations/"
Expand All @@ -16,7 +16,7 @@ edition = "2021"
[dependencies]
chrono = "0.4.31"
chrono-human-duration = "0.1.1"
clap = { version = "4.4.8", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
cli-table = "0.4.7"
color-eyre = "0.6.2"
convert_case = "0.6.0"
Expand All @@ -29,9 +29,9 @@ regex = "1.10.2"
rust-ini = "0.20.0"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
sqlparser = "0.39.0"
surrealdb = { version = "1.0.0", features = ["protocol-http"] }
tokio = { version = "1.34.0", features = ["macros"] }
sqlparser = "0.40.0"
surrealdb = { version = "1.0.1", features = ["protocol-http"] }
tokio = { version = "1.35.0", features = ["macros"] }

[dev-dependencies]
assert_cmd = "2.0.12"
Expand Down
2 changes: 1 addition & 1 deletion tests/cli/branch/diff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async fn diff_with_changes() -> Result<()> {
## category ##
DEFINE TABLE category SCHEMALESS
DEFINE TABLE category SCHEMALESS PERMISSIONS NONE
DEFINE FIELD created_at ON category TYPE datetime DEFAULT time::now()
DEFINE FIELD name ON category TYPE string\n",
)
Expand Down

0 comments on commit 6b6aa2f

Please sign in to comment.