Skip to content

Commit

Permalink
Add changelog and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pka committed Jan 11, 2025
1 parent 57f44e1 commit 1aaa95f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## 0.2.0 (2025-01-11)

* Add geographical location query functions (@mfbehrens)
* Fix pixel offset in padded tiles (@flash-freezing-lava)

## 0.1.0 (2024-02-09)

First release on crates.io.
14 changes: 6 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "georaster"
version = "0.1.0"
version = "0.2.0"
authors = ["Pirmin Kalberer <[email protected]>"]
edition = "2021"

Expand All @@ -11,9 +11,11 @@ readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["tiff", "geo"]
categories = ["science::geo", "multimedia::images"]
exclude = [
"data",
]
exclude = ["data"]

[features]
geo-crate = ["dep:geo"]
geodesy-crate = ["dep:geodesy"]

[dependencies]
geo = { version = "0.28.0", optional = true }
Expand All @@ -24,7 +26,3 @@ tiff = "0.9.1"
image = "0.25.2"
http-range-client = "0.8.0"
env_logger = "0.11.5"

[features]
geo-crate = ["dep:geo"]
geodesy-crate = ["dep:geodesy"]

0 comments on commit 1aaa95f

Please sign in to comment.