Skip to content

Commit

Permalink
release: bump to v0.5.2 (#53)
Browse files Browse the repository at this point in the history
Signed-off-by: Runji Wang <[email protected]>
  • Loading branch information
wangrunji0408 authored Jun 16, 2022
1 parent e1c3ce5 commit b197296
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
## [0.5.2] - 2022-06-16

### Fixed

- Fix expanded `include` wildcard file name. (#52)

## [0.5.1] - 2022-06-15
## [0.5.1] - 2022-06-16

### Added

- Support wildcard in `include` statement
- Support wildcard in `include` statement. (#49)

### Changed

- Show diff instead of actual / expected data on failed. (#51)

## [0.5.0] - 2022-06-09

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqllogictest"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
description = "Sqllogictest parser and runner."
license = "MIT OR Apache-2.0"
Expand All @@ -26,6 +26,8 @@ glob = "0.3"
humantime = "2"
itertools = "0.10"
log = "0.4"
tempfile = "3"
thiserror = "1"
tokio = { version = "1", features = [
"rt",
"rt-multi-thread",
Expand All @@ -34,8 +36,6 @@ tokio = { version = "1", features = [
"fs"
], optional = true }
tokio-postgres = { version = "0.7", optional = true }
tempfile = "3"
thiserror = "1"

[[bin]]
name = "sqllogictest"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add the following lines to your `Cargo.toml` file:

```toml
[dependencies]
sqllogictest = "0.4"
sqllogictest = "0.5"
```

Implement `DB` trait for your database structure:
Expand Down

0 comments on commit b197296

Please sign in to comment.