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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions regex-filtered/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.1](https://github.com/ua-parser/uap-rust/compare/regex-filtered-v0.2.0...regex-filtered-v0.2.1) - 2026-03-19

### Fixed

- Fix unicode casefolding (#58)
- Correctly expand repetitions into atoms (#53, with overly eager
expansion risking resource exhaustion fixed in #56)
- Improved quality of atoms generated by concatenation (#53)

### Optimized

- Replace `IndexSet<NoHash>` by a proper `IntSet`, drops the
dependency on `indexmap` and `nohash` and increases performances by
~10%

### Other

- Update to edition 2024
2 changes: 1 addition & 1 deletion regex-filtered/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "regex-filtered"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
description = "Efficiently check an input against a large number of patterns"
keywords = ["regex", "filter", "FilteredRE2", "multiple", "prefilter"]
Expand Down
18 changes: 18 additions & 0 deletions ua-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.2](https://github.com/ua-parser/uap-rust/compare/ua-parser-v0.2.1...ua-parser-v0.2.2) - 2026-03-19

### Added

- `Value` and `ValueRef` derive `Clone` (#40)

### Other

- Update to edition 2024
4 changes: 2 additions & 2 deletions ua-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ua-parser"
version = "0.2.1"
version = "0.2.2"
edition = "2024"
license = "Apache-2.0"
description = "Rust implementation of the User Agent String Parser project"
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/ua-parser/uap-rust/"

[dependencies]
regex = "1.11.1"
regex-filtered = { version = "0.2.0", path = "../regex-filtered" }
regex-filtered = { version = "0.2.1", path = "../regex-filtered" }
serde = { version = "1.0.215", features = ["derive"] }

[dev-dependencies]
Expand Down
Loading