Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
name: Check
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Delete rust-toolchain.toml
run: rm rust-toolchain.toml
- name: Install toolchain
Expand All @@ -65,7 +65,7 @@ jobs:
outputs:
rust-versions: ${{ steps.metadata.outputs.rust-versions }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- id: metadata
run: |
msrv=$(yq '.workspace.package.rust-version' Cargo.toml)
Expand All @@ -81,7 +81,7 @@ jobs:
rust-version: ${{ fromJson(needs.msrv.outputs.rust-versions) }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Delete rust-toolchain.toml
run: rm rust-toolchain.toml
- name: Install toolchain
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All significant changes to this project will be documented in this file.

## Unreleased

### New features

* `FrequentItemsSketch` now supports borrowed-key updates via `update_ref` and `update_with_count_ref`, allowing sketches such as `FrequentItemsSketch<String>` to update from `&str` without allocating on existing-key hits. Frequency queries also accept borrowed key forms matching `Borrow<Q>`.

## v0.3.0 (2026-05-18)

### Breaking changes
Expand Down