Skip to content

Commit 60736af

Browse files
committedMar 30, 2022
chore: bump version v0.7.1
1 parent 95a9f0e commit 60736af

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed
 

‎CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
## Unreleased
44

5+
## [v0.7.1](https://github.com/pjsier/echomap/releases/tag/v0.7.1)
6+
7+
- Use `FeatureIterator` from [`geojson` v0.22.3](https://github.com/georust/geojson/releases/tag/0.22.3) to reduce memory consumption and runtime significantly for extremely large GeoJSON files
8+
59
## [v0.7.0](https://github.com/pjsier/echomap/releases/tag/v0.7.0)
610

711
- Multiple dependency updates, including refactoring for `clap`
8-
- Use `FeatureIterator` from [`geojson` v0.22.3](https://github.com/georust/geojson/releases/tag/0.22.3) to reduce memory consumption and runtime significantly for extremely large GeoJSON files
912

1013
## [v0.6.2](https://github.com/pjsier/echomap/releases/tag/v0.6.2)
1114

‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "echomap"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Pat Sier <pjsier@gmail.com>"]
55
description = "A command line tool for previewing map files in the terminal"
66
readme = "README.md"

‎src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ mod test {
385385

386386
#[test]
387387
fn test_handle_geojson() {
388-
let file_path = "../fixtures/input.geojson";
388+
let file_path = "./fixtures/input.geojson";
389389
let outlines = handle_geojson(file_path, 0., false).unwrap();
390390
let lines = outlines.iter().filter(|g| matches!(g, GridGeom::Line(_)));
391391
let areas = handle_geojson(file_path, 0., true).unwrap();

0 commit comments

Comments
 (0)
Please sign in to comment.