Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.8 #47

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changes

## Unreleased

- Your change here.

## 0.8.0 - 2024-12-03

- As of this version the `wkb` crate is an entirely new implementation of reading/writing WKB. Previous versions of the `wkb` crate were published from https://github.com/amandasaurus/rust-wkb.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "wkb"
version = "0.1.0"
version = "0.8.0"
authors = ["Kyle Barron <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/georust/wkb"
description = "Standalone WKB reader and writer"
description = "Fast, pure-Rust reader and writer for Well-Known Binary geometries"
categories = ["science::geo"]
# 1.82 is the minimum version for `impl GeometryTrait + use<'_>` in `read_wkb`
# https://rust-lang.github.io/rfcs/3617-precise-capturing.html
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
# `wkb`

<!-- [![Crate][crates-badge]][crates-url]
[![Crate][crates-badge]][crates-url]
[![API Documentation][docs-badge]][docs-url]

[crates-badge]: https://img.shields.io/crates/v/wkb.svg
[crates-url]: https://crates.io/crates/wkb
[docs-badge]: https://docs.rs/wkb/badge.svg
[docs-url]: https://docs.rs/wkb -->
[docs-url]: https://docs.rs/wkb

A fast, freely-licensed implementation of reading and writing the [Well-Known Binary][wkb] encoding of vector geometries.

> This is not yet published to `crates.io`, pending a potential transfer of the `wkb` name from [a previous wkb crate](https://crates.io/crates/wkb/0.7.1).

## Features

- Reading and write without copying to an intermediate representation, thanks to [`geo_traits`][geo_traits].
- Full support for Z, M, and ZM dimension data.
- Full support for little-endian and big-endian data, in both reading and writing.
- Read support for extended Well-Known Binary (EWKB). Any embedded SRID is currently ignored.
- Read-only support for extended Well-Known Binary (EWKB). Any embedded SRID is currently ignored.
- MIT and Apache 2 license.

[geo_traits]: https://docs.rs/geo-traits/latest/geo_traits/
Expand Down
Loading