From 1d1db08a06cf88c74a840eab1eb0f574c8069832 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Fri, 20 Sep 2024 08:57:13 -0600 Subject: [PATCH] fix: v0.10, not v0.10.0 --- ...stac-rs-v0.10.0.md => 2024-09-19-stac-rs-v0.10.md} | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) rename content/posts/{2024-09-19-stac-rs-v0.10.0.md => 2024-09-19-stac-rs-v0.10.md} (93%) diff --git a/content/posts/2024-09-19-stac-rs-v0.10.0.md b/content/posts/2024-09-19-stac-rs-v0.10.md similarity index 93% rename from content/posts/2024-09-19-stac-rs-v0.10.0.md rename to content/posts/2024-09-19-stac-rs-v0.10.md index a6c1083..b5587bf 100644 --- a/content/posts/2024-09-19-stac-rs-v0.10.0.md +++ b/content/posts/2024-09-19-stac-rs-v0.10.md @@ -1,7 +1,10 @@ +++ -title = "stac-rs v0.10.0" -slug = "stac-rs-v0.10.0" +title = "stac-rs v0.10" +slug = "stac-rs-v0.10" date = 2024-09-19 +aliases = [ + "stac-rs-v0.10.0" +] [taxonomies] tags = ["rust", "stac"] @@ -13,7 +16,7 @@ categories = ["releases"] [stac-rs](https://github.com/stac-utils/stac-rs) is a "hobby" project of mine. I put "hobby" in quotes because I've sunk quite a few tens (hundreds?) of hours into it because I think it might actually Be Useful™ in the real world in the not-to-distant future. I talked about it at [FOSS4G-NA 2024](@/posts/2024-09-19-FOSS4G-NA.md), and afterwords discovered that [at least one person is using it in production](https://github.com/stac-utils/stac-rs/issues/375#issue-2521984744). -So, I'm happy to announce the v0.10.0 release of the core crate, [stac](https://crates.io/crates/stac/0.10.0). +So, I'm happy to announce the v0.10 release of the core crate, [stac](https://crates.io/crates/stac/0.10.0). ## STAC v1.1.0 🎉 @@ -60,7 +63,7 @@ Format::ndjson().write("items.ndjson", items); ## Object store [fsspec](https://filesystem-spec.readthedocs.io) is a widely-used Python library that allows folks to use the same interface to open files from a variety of sources, including the local filesystem and cloud provider blob storage. -[object_store](https://docs.rs/object_store/latest/object_store/) is the Rust equivalent, and **stac** v0.10.0 includes **object_store** support via some [free functions](https://docs.rs/stac/0.10.0/stac/io/index.html): +[object_store](https://docs.rs/object_store/latest/object_store/) is the Rust equivalent, and **stac** v0.10 includes **object_store** support via some [free functions](https://docs.rs/stac/0.10.0/stac/io/index.html): ```rust use stac::Item;