File tree Expand file tree Collapse file tree 10 files changed +39
-37
lines changed
js/packages/quary-extension Expand file tree Collapse file tree 10 files changed +39
-37
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Extract version from Cargo.toml
4
- cargo_version_cli=$( grep " ^version" rust/cli/Cargo.toml | awk -F ' "' ' {print $2}' )
5
- cargo_version_core=$( grep " ^version" rust/core/Cargo.toml | awk -F ' "' ' {print $2}' )
6
- cargo_version_databases=$( grep " ^version" rust/quary-databases/Cargo.toml | awk -F ' "' ' {print $2}' )
7
- cargo_version_dbt=$( grep " ^version" rust/dbt-converter/Cargo.toml | awk -F ' "' ' {print $2}' )
8
- cargo_version_sqlinference=$( grep " ^version" rust/sqlinference/Cargo.toml | awk -F ' "' ' {print $2}' )
9
- cargo_version_wasm=$( grep " ^version" rust/wasm-binding/Cargo.toml | awk -F ' "' ' {print $2}' )
4
+ cargo_version=$( grep " ^version" Cargo.toml | awk -F ' "' ' {print $2}' )
10
5
11
6
# Extract version from package.json
12
7
ts_version=$( jq -r ' .version' js/packages/quary-extension/package.json)
@@ -22,12 +17,7 @@ compare_versions() {
22
17
fi
23
18
}
24
19
25
- compare_versions " $cargo_version_cli " " $ts_version "
26
- compare_versions " $cargo_version_core " " $ts_version "
27
- compare_versions " $cargo_version_databases " " $ts_version "
28
- compare_versions " $cargo_version_dbt " " $ts_version "
29
- compare_versions " $cargo_version_sqlinference " " $ts_version "
30
- compare_versions " $cargo_version_wasm " " $ts_version "
20
+ compare_versions " $cargo_version " " $ts_version "
31
21
32
22
# If GitHub release version is provided, compare it as well
33
23
if [ -n " $github_release_version " ]; then
Original file line number Diff line number Diff line change @@ -10,5 +10,11 @@ members = [
10
10
]
11
11
resolver = " 2"
12
12
13
+ [workspace .package ]
14
+ version = " 0.4.0"
15
+ edition = " 2021"
16
+ license = " Apache-2.0"
17
+ rust-version = " 1.80.0"
18
+
13
19
[workspace .dependencies ]
14
20
cargo-nextest = " 0.9"
Original file line number Diff line number Diff line change 5
5
"description" : " " ,
6
6
"repository" : " https://github.com/quarylabs/quary" ,
7
7
"icon" : " images/quary-logo.png" ,
8
- "version" : " 0.3.3 " ,
8
+ "version" : " 0.4.0 " ,
9
9
"engines" : {
10
10
"vscode" : " ^1.91.0"
11
11
},
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " quary"
3
- version = " 0.3.3"
4
- edition = " 2021"
5
- rust-version = " 1.80.0"
3
+ version.workspace = true
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
6
7
7
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " quary-core"
3
- version = " 0.3.3"
4
3
authors = [
" Ben King <[email protected] >" ]
5
- edition = " 2021"
6
- rust-version = " 1.80.0"
4
+ version.workspace = true
5
+ edition.workspace = true
6
+ license.workspace = true
7
+ rust-version.workspace = true
7
8
8
9
[lib ]
9
10
crate-type = [" cdylib" , " rlib" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " dbt-converter"
3
- version = " 0.3.3"
4
- edition = " 2021"
5
- rust-version = " 1.80.0"
3
+ version.workspace = true
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
6
7
7
8
[dependencies ]
8
9
serde_yaml = " 0.9"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " quary-databases"
3
- version = " 0.3.3"
4
- edition = " 2021"
5
- rust-version = " 1.80.0"
3
+ version.workspace = true
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
6
7
7
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " sqlinference"
3
- version = " 0.3.3"
4
- edition = " 2021"
5
- rust-version = " 1.80.0"
3
+ version.workspace = true
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
6
7
7
8
[lib ]
8
9
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " quary-wasm-bindgen"
3
- version = " 0.3.3"
4
3
authors = [
" Ben King <[email protected] >" ]
5
- edition = " 2021"
6
- rust-version = " 1.80.0"
4
+ version.workspace = true
5
+ edition.workspace = true
6
+ license.workspace = true
7
+ rust-version.workspace = true
7
8
8
9
[lib ]
9
10
crate-type = [" cdylib" , " rlib" ]
You can’t perform that action at this time.
0 commit comments