This is an automated email from the ASF dual-hosted git repository. tison pushed a commit to branch metadata in repository https://gitbox.apache.org/repos/asf/datasketches-rust.git
commit 07fa4622890cc64f687fe33dee8b3b24bd5bf396 Author: tison <[email protected]> AuthorDate: Wed Jan 28 23:40:41 2026 +0800 chore: update README and add CHANGELOG Signed-off-by: tison <[email protected]> --- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 16 ++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e316b9c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# CHANGELOG + +All significant changes to this project will be documented in this file. + +## Unreleased + +### Breaking changes + +* `CountMinSketch` now has a type parameter for the count type. Possible values are `u8` to `u64` and `i8` to `i64`. + +## v0.2.0 (2025-01-14) + +This is the initial release. It includes the following sketches: + +* BloomFilter +* CountMinSketch +* FrequentItemsSketch +* HllSketch +* T-Digest +* ThetaSketch diff --git a/README.md b/README.md index c74aa91..c395143 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,22 @@ # Apache® DataSketches™ Core Rust Library Component +[![Crates.io][crates-badge]][crates-url] +[![Documentation][docs-badge]][docs-url] +[![MSRV 1.85.0][msrv-badge]](https://www.whatrustisit.com) +[![Apache 2.0 licensed][license-badge]][license-url] +[![Build Status][actions-badge]][actions-url] + +[crates-badge]: https://img.shields.io/crates/v/datasketches.svg +[crates-url]: https://crates.io/crates/datasketches +[docs-badge]: https://img.shields.io/docsrs/datasketches +[docs-url]: https://docs.rs/datasketches +[msrv-badge]: https://img.shields.io/badge/MSRV-1.85.0-green?logo=rust +[license-badge]: https://img.shields.io/crates/l/datasketches +[license-url]: LICENSE +[actions-badge]: https://github.com/apache/datasketches-rust/workflows/CI/badge.svg +[actions-url]: https://github.com/apache/datasketches-rust/actions?query=workflow%3ACI + > [!WARNING] > > This repository is under early development. Use it with caution! --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
