Skip to content

Commit

Permalink
Bump cli, core, pkg/rust and test-suite versions to v0.13.1 (gluesql#991
Browse files Browse the repository at this point in the history
)

* Bump cli, core, pkg/rust and test-suite versions to v0.13.1
* Update pkg/javascript Cargo.toml version to v0.13.1 (will not be released)
  • Loading branch information
panarch committed Nov 8, 2022
1 parent 9cf5593 commit af908dc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluesql-cli"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
authors = ["Taehoon Moon <taehoon.moon@outlook.com>"]
description = "GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support!"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/gluesql/gluesql"
documentation = "https://docs.rs/gluesql/"

[dependencies]
gluesql-core = { path = "../core", version = "0.13.0", features = ["alter-table"] }
gluesql-core = { path = "../core", version = "0.13.1", features = ["alter-table"] }
gluesql_sled_storage = { path = "../storages/sled-storage", version = "0.13.0" }
gluesql_memory_storage = { path = "../storages/memory-storage", version = "0.13.0" }

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 = "gluesql-core"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
authors = ["Taehoon Moon <taehoon.moon@outlook.com>"]
description = "GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support!"
Expand Down
6 changes: 3 additions & 3 deletions pkg/javascript/web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluesql-js"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
authors = ["Taehoon Moon <taehoon.moon@outlook.com>"]
description = "GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support!"
Expand Down Expand Up @@ -28,7 +28,7 @@ serde_json = "1"
# code size when deploying.
console_error_panic_hook = { version = "0.1.6", optional = true }

gluesql-core = { path = "../../../core", version = "0.13.0" }
gluesql-core = { path = "../../../core", version = "0.13.1" }
memory-storage = { package = "gluesql_memory_storage", path = "../../../storages/memory-storage", version = "0.13.0" }

[dev-dependencies]
Expand All @@ -37,5 +37,5 @@ wasm-bindgen-test = "0.3.13"
[dev-dependencies.test-suite]
package = "gluesql-test-suite"
path = "../../../test-suite"
version = "0.13.0"
version = "0.13.1"
features = ["alter-table"]
11 changes: 5 additions & 6 deletions pkg/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluesql"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
authors = ["Taehoon Moon <taehoon.moon@outlook.com>"]
default-run = "gluesql"
Expand All @@ -12,8 +12,7 @@ readme = "README.md"
keywords = [
"sql-database",
"sql",
"functional",
"no-mut-in-the-middle",
"websql",
"webassembly",
]

Expand All @@ -26,9 +25,9 @@ all-features = true
# opt-level = "s"

[dependencies]
gluesql-core = { path = "../../core", version = "0.13.0" }
cli = { package = "gluesql-cli", path = "../../cli", version = "0.13.0", optional = true }
test-suite = { package = "gluesql-test-suite", path = "../../test-suite", version = "0.13.0", optional = true }
gluesql-core = { path = "../../core", version = "0.13.1" }
cli = { package = "gluesql-cli", path = "../../cli", version = "0.13.1", optional = true }
test-suite = { package = "gluesql-test-suite", path = "../../test-suite", version = "0.13.1", optional = true }
memory-storage = { package = "gluesql_memory_storage", path = "../../storages/memory-storage", version = "0.13.0", optional = true }
shared-memory-storage = { package = "gluesql-shared-memory-storage", path = "../../storages/shared-memory-storage", version = "0.13.0", optional = true }
sled-storage = { package = "gluesql_sled_storage", path = "../../storages/sled-storage", version = "0.13.0", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions test-suite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluesql-test-suite"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
authors = ["Taehoon Moon <taehoon.moon@outlook.com>"]
description = "GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support!"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/gluesql/gluesql"
documentation = "https://docs.rs/gluesql/"

[dependencies]
gluesql-core = { path = "../core", version = "0.13.0" }
gluesql-core = { path = "../core", version = "0.13.1" }
async-trait = "0.1"
bigdecimal = "0.3"
chrono = "0.4"
Expand Down

0 comments on commit af908dc

Please sign in to comment.