Skip to content

Commit ad46a4f

Browse files
authored
release: bump to v0.13.0 (#168)
Signed-off-by: Alex Chi <iskyzh@gmail.com>
1 parent fa5407e commit ad46a4f

File tree

7 files changed

+29
-11
lines changed

7 files changed

+29
-11
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
fmt:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-22.04
1717
steps:
1818
- uses: actions/checkout@v2
1919
- uses: actions-rs/toolchain@v1
@@ -33,7 +33,7 @@ jobs:
3333
args: --all-targets -- -D warnings
3434

3535
test:
36-
runs-on: ubuntu-20.04
36+
runs-on: ubuntu-22.04
3737
steps:
3838
- uses: actions/checkout@v2
3939
- uses: actions-rs/toolchain@v1
@@ -56,3 +56,21 @@ jobs:
5656
do
5757
cargo run --example "$(basename "$example")"
5858
done
59+
60+
semver:
61+
runs-on: ubuntu-22.04
62+
steps:
63+
- uses: actions/checkout@v2
64+
- uses: actions-rs/toolchain@v1
65+
with:
66+
profile: minimal
67+
toolchain: stable
68+
- name: Install semver-checks
69+
uses: actions-rs/cargo@v1
70+
with:
71+
command: install
72+
args: cargo-semver-checks --locked
73+
- name: Check semver
74+
run: |
75+
cargo semver-checks check-release -p sqllogictest
76+
cargo semver-checks check-release -p sqllogictest-engines

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: Release
88
jobs:
99
release:
1010
name: Release
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/checkout@v2
1414
name: Checkout 🛎️

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.12.1] - 2023-02-15
8+
## [0.13.0] - 2023-02-15
99

1010
* `sqllogictest-bin` now uses the strict validator to update records (the runner still doesn't check schema).
1111
* The query syntax now allows optional columns (`query\n` without any column arguments).

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
members = ["examples/*", "sqllogictest", "sqllogictest-bin", "sqllogictest-engines", "tests"]
33

44
[workspace.package]
5-
version = "0.12.1"
5+
version = "0.13.0"
66
edition = "2021"
77
homepage = "https://github.com/risinglightdb/sqllogictest-rs"
88
keywords = ["sql", "database", "parser", "cli"]

sqllogictest-bin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ glob = "0.3"
2020
itertools = "0.10"
2121
quick-junit = { version = "0.2" }
2222
rand = "0.8"
23-
sqllogictest = { path = "../sqllogictest", version = "0.12" }
24-
sqllogictest-engines = { path = "../sqllogictest-engines", version = "0.12" }
23+
sqllogictest = { path = "../sqllogictest", version = "0.13" }
24+
sqllogictest-engines = { path = "../sqllogictest-engines", version = "0.13" }
2525
tokio = { version = "1", features = [
2626
"rt",
2727
"rt-multi-thread",

sqllogictest-engines/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ postgres-types = { version = "0.2.3", features = ["derive", "with-chrono-0_4"] }
1919
rust_decimal = { version = "1.7.0", features = ["tokio-pg"] }
2020
serde = { version = "1", features = ["derive"] }
2121
serde_json = "1"
22-
sqllogictest = { path = "../sqllogictest", version = "0.12" }
22+
sqllogictest = { path = "../sqllogictest", version = "0.13" }
2323
thiserror = "1"
2424
tokio = { version = "1", features = [
2525
"rt",

0 commit comments

Comments
 (0)