Skip to content

Commit

Permalink
release: v0.3.0 (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski authored Oct 14, 2024
1 parent 5a590fd commit 59151ea
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 35 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.3.0] - 2024-10-14

### Changed

- Use free functions (instead of staticmethods) in the Python API ([#41](https://github.com/developmentseed/cql2-rs/pull/41))

## [0.2.0] - 2024-10-10

### Added
Expand All @@ -23,6 +29,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

Initial release.

[Unreleased]: https://github.com/developmentseed/cql-rs/compare/v0.2.0...main
[Unreleased]: https://github.com/developmentseed/cql-rs/compare/v0.3.0...main
[0.3.0]: https://github.com/developmentseed/cql-rs/releases/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/developmentseed/cql-rs/releases/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/developmentseed/cql-rs/releases/tag/v0.1.0
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 11 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
[workspace.package]
version = "0.3.0"
authors = [
"David Bitner <[email protected]>",
"Pete Gadomski <[email protected]>",
]
edition = "2021"
documentation = "https://docs.rs/cql2"
repository = "https://github.com/developmentseed/cql2-rs"
license = "MIT"

[package]
name = "cql2"
version = { workspace = true }
Expand Down Expand Up @@ -32,13 +43,5 @@ rstest = "0.23"
default-members = [".", "cli"]
members = ["cli", "python"]

[workspace.package]
version = "0.2.0"
authors = ["David Bitner <[email protected]>"]
edition = "2021"
documentation = "https://docs.rs/cql2"
repository = "https://github.com/developmentseed/cql2-rs"
license = "MIT"

[workspace.dependencies]
clap = "4.5"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Parse, validate, and convert [Common Query Language (CQL2)](https://www.ogc.org/

```toml
[dependencies]
cql = "0.2"
cql = "0.3"
```

Then:
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords = ["cql2"]
[dependencies]
anyhow = "1.0"
clap = { workspace = true, features = ["derive"] }
cql2 = { path = "..", version = "0.2.0" }
cql2 = { path = "..", version = "0.3.0" }
serde_json = "1.0"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Then:
```python
expr = Expr("landsat:scene_id = 'LC82030282019133LGN00'")
# or
expr = Expr.from_path("fixtures/text/example01.txt")
expr = cql2.parse_file("fixtures/text/example01.txt")

s = expr.to_text()
d = expr.to_json()
Expand Down

0 comments on commit 59151ea

Please sign in to comment.