Skip to content

Commit fa226e3

Browse files
chore: release v0.5.0 (#141)
Co-authored-by: ds-release-bot[bot] <116609932+ds-release-bot[bot]@users.noreply.github.com>
1 parent d37055f commit fa226e3

File tree

5 files changed

+54
-10
lines changed

5 files changed

+54
-10
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,36 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/developmentseed/cql2-rs/compare/cql2-v0.4.2...cql2-v0.5.0) - 2025-12-08
10+
11+
### Added
12+
13+
- add __str__ and __repr__ ([#122](https://github.com/developmentseed/cql2-rs/pull/122))
14+
- add __version__ to python module ([#121](https://github.com/developmentseed/cql2-rs/pull/121))
15+
16+
### Fixed
17+
18+
- *(ci)* remove locked check ([#125](https://github.com/developmentseed/cql2-rs/pull/125))
19+
- it wasn't used anywhere and it was broken ([#124](https://github.com/developmentseed/cql2-rs/pull/124))
20+
- *(ci)* update to latest npm for publishing
21+
- *(ci)* remove clean install from npm publish
22+
23+
### Other
24+
25+
- use release bot for releasing ([#145](https://github.com/developmentseed/cql2-rs/pull/145))
26+
- *(deps)* bump the production-dependencies group across 1 directory with 3 updates ([#144](https://github.com/developmentseed/cql2-rs/pull/144))
27+
- fix ci config ([#143](https://github.com/developmentseed/cql2-rs/pull/143))
28+
- *(deps)* bump the production-dependencies group with 3 updates ([#142](https://github.com/developmentseed/cql2-rs/pull/142))
29+
- add release-plz workflow ([#140](https://github.com/developmentseed/cql2-rs/pull/140))
30+
- *(deps)* bump the production-dependencies group with 6 updates ([#138](https://github.com/developmentseed/cql2-rs/pull/138))
31+
- *(deps)* bump actions/checkout from 5 to 6 ([#134](https://github.com/developmentseed/cql2-rs/pull/134))
32+
- try groups ([#136](https://github.com/developmentseed/cql2-rs/pull/136))
33+
- group dependencies ([#135](https://github.com/developmentseed/cql2-rs/pull/135))
34+
- *(ci)* actually keep the locked check ([#127](https://github.com/developmentseed/cql2-rs/pull/127))
35+
- *(deps)* bump actions/setup-node from 4 to 6 ([#126](https://github.com/developmentseed/cql2-rs/pull/126))
36+
- *(wasm)* [**breaking**] Make WASM module interface more like Python module ([#120](https://github.com/developmentseed/cql2-rs/pull/120))
37+
- update cargo lock
38+
939
### Changed
1040

1141
- Normalized WASM interface to match Python API ([#120](https://github.com/developmentseed/cql2-rs/pull/120))

Cargo.lock

Lines changed: 8 additions & 8 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.4.2"
2+
version = "0.5.0"
33
authors = [
44
"David Bitner <bitner@dbspatial.com>",
55
"Pete Gadomski <pete.gadomski@gmail.com>",

cli/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.5.0](https://github.com/developmentseed/cql2-rs/compare/cql2-cli-v0.4.2...cql2-cli-v0.5.0) - 2025-12-08
11+
12+
### Other
13+
14+
- *(wasm)* [**breaking**] Make WASM module interface more like Python module ([#120](https://github.com/developmentseed/cql2-rs/pull/120))

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.4.0" }
17+
cql2 = { path = "..", version = "0.5.0" }
1818
serde_json = "1.0"
1919

2020
[[bin]]

0 commit comments

Comments
 (0)