Skip to content

Commit e998e21

Browse files
github-actions[bot]masklinn
authored andcommitted
chore: release
1 parent e7cb5e4 commit e998e21

5 files changed

Lines changed: 49 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

regex-filtered/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.2.1](https://github.com/ua-parser/uap-rust/compare/regex-filtered-v0.2.0...regex-filtered-v0.2.1) - 2026-03-19
11+
12+
### Other
13+
14+
- Don't use an IntSet for the regexps when mapping atoms to regex
15+
- Fix unicode casefolding
16+
- Make sure an alternation with an empty literal doesn't break
17+
- Fix resource exhaustion risk
18+
- Produce better atoms on Concat
19+
- Fix stupid short atoms on repetitions
20+
- Update to edition 2024
21+
- CI compatibility bumps
22+
- Change the bench programs to atoms of size 2
23+
- Make regex-filtered re2 bench easier to run
24+
- Update dependencies
25+
- Update dependencies to latest
26+
- cargo fmt
27+
- Fix for gcc being a dummy
28+
- Implement bespoke cut down IntMap
29+
- Minor styllistic improvements to mapper builing

regex-filtered/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex-filtered"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
description = "Efficiently check an input against a large number of patterns"
66
keywords = ["regex", "filter", "FilteredRE2", "multiple", "prefilter"]

ua-parser/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.2.2](https://github.com/ua-parser/uap-rust/compare/ua-parser-v0.2.1...ua-parser-v0.2.2) - 2026-03-19
11+
12+
### Other
13+
14+
- Update to edition 2024
15+
- Derive Clone for Value and ValueRef

ua-parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ua-parser"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "Rust implementation of the User Agent String Parser project"
@@ -14,7 +14,7 @@ repository = "https://github.com/ua-parser/uap-rust/"
1414

1515
[dependencies]
1616
regex = "1.11.1"
17-
regex-filtered = { version = "0.2.0", path = "../regex-filtered" }
17+
regex-filtered = { version = "0.2.1", path = "../regex-filtered" }
1818
serde = { version = "1.0.215", features = ["derive"] }
1919

2020
[dev-dependencies]

0 commit comments

Comments
 (0)