Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adzap committed Dec 1, 2024
1 parent d7c53d6 commit 8b04cc7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
= 0.5.0 - 2024-12-02
* Reduce allocations through some internal parsing changes
* Changed parse method arg handling to simple using keyword args

= 0.4.5 - 2023-01-19
* Support case insensitive months
* Migrated to Github Actions (@petergoldstein)
* Various doc, spec, and gemspec fixes and updates (@tagliala)

= 0.4.4 - 2019-08-06
* Raise compilation error if token with capturing arg is used more than once in a format
* Some small internal refactorings in format compilation
Expand All @@ -10,7 +19,7 @@
= 0.4.2 - 2019-06-15
* Fixed thread safe issue that forced you to use one of the date format methods e.g. `use_euro_formats`
to initialize the format sets in each new thread. Now a new thread will default to the global default (main thread).
* Add `Timeliness.ambiguous_date_format` config setting (:us or :euro) to control global default for date format sets.
* Add `Timeliness.ambiguous_date_format` config setting (:us or :euro) to control global default for date format sets.

= 0.4.1 - 2019-06-11
* Add format for ISO 8601 with usec and 'Z' UTC zone offset (jartek)
Expand All @@ -19,7 +28,7 @@

= 0.4.0 - 2019-02-09
* Add threadsafety for use_euro_formats & use_us_formats to allow runtime
switching (andruby, timdiggins)
switching (andruby, timdiggins)

= 0.3.10 - 2019-02-06
* Fixed file permissions in gem build
Expand Down
2 changes: 1 addition & 1 deletion lib/timeliness/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Timeliness
VERSION = '0.4.5'
VERSION = '0.5.0'.freeze
end

0 comments on commit 8b04cc7

Please sign in to comment.