diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bcfef8011262cba684d9c72e4b742924c78a600..e390e97fdb334d86bf2c57a0286063e7ef0dcc69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.4.2 + +* Make sort_by_alphanum stable for chunks that parse to the same int like 04 and 4. + ## 0.4.1 * Add timezone to logging timestamps. Use milliseconds instead of microseconds precision. diff --git a/Gemfile.lock b/Gemfile.lock index 0cca564268ffa98d1816357942c1bc5900a54365..b8645d636818f1caa28e309f978b24877be8a360 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,7 +10,7 @@ GIT PATH remote: . specs: - roqua-support (0.4.1) + roqua-support (0.4.2) active_interaction (>= 3.0, < 5.0) activesupport (>= 5.2, < 6.2) appsignal (>= 2.9, < 3.1) @@ -33,9 +33,9 @@ GEM erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - active_interaction (4.0.5) - activemodel (>= 5, < 7) - activesupport (>= 5, < 7) + active_interaction (4.1.0) + activemodel (>= 5, < 8) + activesupport (>= 5, < 8) activemodel (6.0.2.2) activesupport (= 6.0.2.2) activerecord (6.0.2.2) @@ -51,7 +51,7 @@ GEM bundler rake thor (>= 0.14.0) - appsignal (3.0.13) + appsignal (3.0.19) rack ast (2.4.2) builder (3.2.4) diff --git a/lib/roqua-support/version.rb b/lib/roqua-support/version.rb index ede468f4b5d8ef862396aa2ad0ff5ba08f362cad..fc7d84c3058ff9dd67de8a67e14e49f06806316e 100644 --- a/lib/roqua-support/version.rb +++ b/lib/roqua-support/version.rb @@ -1,5 +1,5 @@ module Roqua module Support - VERSION = '0.4.1'.freeze + VERSION = '0.4.2'.freeze end end