From f392f12dcfe87fb9a9740413be82aa0e7a276757 Mon Sep 17 00:00:00 2001 From: Rafael Santos Date: Fri, 27 Jan 2023 20:04:22 +1300 Subject: [PATCH] prepare for 0.1.9 --- CHANGELOG.md | 11 +++++++---- lib/zxcvbn/version.rb | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a7482d..1d8b3c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ +## [0.1.9] - 2023-01-27 +- [#6] [#7] Security/Performance fix to vulnerability to DoS attacks. + ## [0.1.8] - 2023-01-22 - How to find information on translations on README. - Drop automatic tests on ruby 2.5 (It still works on it but development gems are failing to build). - Update dev gems to prepare to test on Ruby 3.1 and 3.2. (mini_racer, rubocop and bundler) -- Fix Style/RedundantStringEscape on frequency_lists.rb -- Add automated tests for Ruby 3.1 and 3.2 -- Add MFA requirement on release -- Trim non-production files from final gem +- Fix Style/RedundantStringEscape on frequency_lists.rb. +- Add automated tests for Ruby 3.1 and 3.2. +- Add MFA requirement on release. +- Trim non-production files from final gem. ## [0.1.7] - 2021-06-12 - Ported original specs diff --git a/lib/zxcvbn/version.rb b/lib/zxcvbn/version.rb index d54b4e1..36972f5 100644 --- a/lib/zxcvbn/version.rb +++ b/lib/zxcvbn/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Zxcvbn - VERSION = "0.1.8" + VERSION = "0.1.9" end