Skip to content

Commit 31997f4

Browse files
authored
release: v0.4.0 (#89)
1 parent f41f3a3 commit 31997f4

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.4.0] - 2025-09-16
10+
811
### Changed
912

1013
- Reworked SQL generation to use `SqlParser` AST as the target.
@@ -100,7 +103,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
100103

101104
Initial release.
102105

103-
[Unreleased]: https://github.com/developmentseed/cql2-rs/compare/v0.3.8...main
106+
[Unreleased]: https://github.com/developmentseed/cql2-rs/compare/v0.4.0...main
107+
[0.4.0]: https://github.com/developmentseed/cql2-rs/compare/v0.3.8...v0.4.0
104108
[0.3.8]: https://github.com/developmentseed/cql2-rs/compare/v0.3.7...v0.3.8
105109
[0.3.7]: https://github.com/developmentseed/cql2-rs/compare/v0.3.6...v0.3.7
106110
[0.3.6]: https://github.com/developmentseed/cql2-rs/compare/v0.3.5...v0.3.6

Cargo.lock

Lines changed: 4 additions & 4 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
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.3.8"
2+
version = "0.4.0"
33
authors = [
44
"David Bitner <bitner@dbspatial.com>",
55
"Pete Gadomski <pete.gadomski@gmail.com>",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Parse, validate, and convert [Common Query Language (CQL2)](https://www.ogc.org/
1010

1111
```toml
1212
[dependencies]
13-
cql = "0.3"
13+
cql = "0.4"
1414
```
1515

1616
Then:

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords = ["cql2"]
1414
[dependencies]
1515
anyhow = "1.0"
1616
clap = { workspace = true, features = ["derive"] }
17-
cql2 = { path = "..", version = "0.3.8" }
17+
cql2 = { path = "..", version = "0.4.0" }
1818
serde_json = "1.0"
1919

2020
[[bin]]

0 commit comments

Comments
 (0)