Skip to content

Commit

Permalink
release: bump to v0.13.0 (#168)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Chi <iskyzh@gmail.com>
  • Loading branch information
skyzh committed Feb 16, 2023
1 parent fa5407e commit ad46a4f
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 11 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
fmt:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -33,7 +33,7 @@ jobs:
args: --all-targets -- -D warnings

test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -56,3 +56,21 @@ jobs:
do
cargo run --example "$(basename "$example")"
done
semver:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Install semver-checks
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-semver-checks --locked
- name: Check semver
run: |
cargo semver-checks check-release -p sqllogictest
cargo semver-checks check-release -p sqllogictest-engines
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Release
jobs:
release:
name: Release
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
name: Checkout 🛎️
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.12.1] - 2023-02-15
## [0.13.0] - 2023-02-15

* `sqllogictest-bin` now uses the strict validator to update records (the runner still doesn't check schema).
* The query syntax now allows optional columns (`query\n` without any column arguments).
Expand Down
6 changes: 3 additions & 3 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["examples/*", "sqllogictest", "sqllogictest-bin", "sqllogictest-engines", "tests"]

[workspace.package]
version = "0.12.1"
version = "0.13.0"
edition = "2021"
homepage = "https://github.com/risinglightdb/sqllogictest-rs"
keywords = ["sql", "database", "parser", "cli"]
Expand Down
4 changes: 2 additions & 2 deletions sqllogictest-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ glob = "0.3"
itertools = "0.10"
quick-junit = { version = "0.2" }
rand = "0.8"
sqllogictest = { path = "../sqllogictest", version = "0.12" }
sqllogictest-engines = { path = "../sqllogictest-engines", version = "0.12" }
sqllogictest = { path = "../sqllogictest", version = "0.13" }
sqllogictest-engines = { path = "../sqllogictest-engines", version = "0.13" }
tokio = { version = "1", features = [
"rt",
"rt-multi-thread",
Expand Down
2 changes: 1 addition & 1 deletion sqllogictest-engines/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ postgres-types = { version = "0.2.3", features = ["derive", "with-chrono-0_4"] }
rust_decimal = { version = "1.7.0", features = ["tokio-pg"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqllogictest = { path = "../sqllogictest", version = "0.12" }
sqllogictest = { path = "../sqllogictest", version = "0.13" }
thiserror = "1"
tokio = { version = "1", features = [
"rt",
Expand Down

0 comments on commit ad46a4f

Please sign in to comment.