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
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/rustfoundation/typomania/compare/v0.1.2...v0.2.0) - 2026-06-12

### Fixed

- *(checks)* handle multi-byte UTF-8 in package names
- *(deps)* update rust crate itertools to 0.14.0 ([#18](https://github.com/rustfoundation/typomania/pull/18))
- *(deps)* update rust crate thiserror to v2 ([#20](https://github.com/rustfoundation/typomania/pull/20))

### Other

- *(deps)* lock file maintenance ([#24](https://github.com/rustfoundation/typomania/pull/24))
- *(deps)* Pin `dtolnay/rust-toolchain` action with explicit `toolchain: stable`
- *(deps)* pin dependencies
- *(deps)* update rust crate criterion to 0.8 ([#21](https://github.com/rustfoundation/typomania/pull/21))
- Use `config:best-practices` Renovate preset
- *(checks)* add proptest no-panic coverage
- *(checks)* push repeated char directly in `Repeated` check
- *(checks)* push swapped chars directly in `Characters` check
- *(checks)* move `rebuild_name()` into test module
- *(checks)* reuse a single buffer in `Characters` check
- *(checks)* reuse a single buffer in `Repeated` check
- *(checks)* push delimiter char directly instead of storing strings
- *(checks)* reuse a single buffer when generating variants
- add criterion benchmarks for checks
- *(deps)* update actions/checkout action to v6 ([#19](https://github.com/rustfoundation/typomania/pull/19))
- *(deps)* update rust crate rayon to v1.12.0 ([#17](https://github.com/rustfoundation/typomania/pull/17))
- *(deps)* update rust crate clap to v4.6.1 ([#16](https://github.com/rustfoundation/typomania/pull/16))
- *(deps)* update rust crate thiserror to v1.0.69 ([#13](https://github.com/rustfoundation/typomania/pull/13))
- *(deps)* update rust crate tracing to v0.1.44 ([#14](https://github.com/rustfoundation/typomania/pull/14))
- Add renovate.json ([#12](https://github.com/rustfoundation/typomania/pull/12))
- fix clippy lints on stable ([#10](https://github.com/rustfoundation/typomania/pull/10))
- run release-plz each commit

## [0.1.2](https://github.com/rustfoundation/typomania/compare/v0.1.1...v0.1.2) - 2023-11-10

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typomania"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
description = " A toolbox to check for typosquatting in package registries"
keywords = ["typosquatting", "typosquat", "typogard"]
Expand Down