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

## [Unreleased]

[Unreleased]: https://github.com/envato/zxcvbn-ruby/compare/v2.0.1...HEAD

## [2.0.1] - 2026-07-11

### Fixed
- `NoMethodError` in `Scorer` for passwords containing characters whose lowercased form is longer than the original (e.g. "İ" U+0130 downcases to "i" plus a combining dot). Dictionary and l33t matchers now lowercase per character, keeping match indices aligned with the original password. Dictionary word ranking applies the same normalisation, so user-input words containing such characters now match ([#124])

[Unreleased]: https://github.com/envato/zxcvbn-ruby/compare/v2.0.0...HEAD
[2.0.1]: https://github.com/envato/zxcvbn-ruby/compare/v2.0.0...v2.0.1
[#124]: https://github.com/envato/zxcvbn-ruby/pull/124

## [2.0.0] - 2026-05-28
Expand Down
2 changes: 1 addition & 1 deletion lib/zxcvbn/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Zxcvbn
VERSION = '2.0.0'
VERSION = '2.0.1'
end