Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version #49

Merged
merged 2 commits into from
Aug 11, 2024
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
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0] - 2024-08-11

### Added

- Added support for using a custom logger class.
- Added support for using a custom formatter class.
- Added YARD documentation for project.

### Changed

- (Breaking) Renamed `EventLoggerRails::JsonLogger` to `EventLoggerRails::EventLogger`.
- (Breaking) Changed the name of the `optional_data` method in the `Loggable` concern to `optional_event_logger_data`

## [0.3.1] - 2023-10-14

### Added
Expand Down Expand Up @@ -70,8 +83,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[Unreleased]: https://github.com/d3d1rty/event_logger_rails/compare/0.3.1...HEAD
[0.3.0]: https://github.com/d3d1rty/event_logger_rails/compare/0.3.0...0.3.1
[Unreleased]: https://github.com/d3d1rty/event_logger_rails/compare/0.4.0...HEAD
[0.4.0]: https://github.com/d3d1rty/event_logger_rails/compare/0.3.1...0.4.0
[0.3.1]: https://github.com/d3d1rty/event_logger_rails/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/d3d1rty/event_logger_rails/compare/0.2.1...0.3.0
[0.2.1]: https://github.com/d3d1rty/event_logger_rails/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/d3d1rty/event_logger_rails/compare/0.1.0...0.2.0
Expand Down
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
event_logger_rails (0.3.1)
event_logger_rails (0.4.0)
rails (>= 7.0.0)

GEM
Expand Down Expand Up @@ -79,7 +79,7 @@ GEM
childprocess (4.1.0)
concurrent-ruby (1.2.2)
crass (1.0.6)
date (3.3.3)
date (3.3.4)
debug (1.7.1)
irb (>= 1.5.0)
reline (>= 0.3.1)
Expand Down Expand Up @@ -108,21 +108,21 @@ GEM
net-imap
net-pop
net-smtp
marcel (1.0.2)
marcel (1.0.4)
method_source (1.0.0)
mini_mime (1.1.5)
mini_portile2 (2.8.4)
minitest (5.20.0)
net-imap (0.3.7)
net-imap (0.4.14)
date
net-protocol
net-pop (0.1.2)
net-protocol
net-protocol (0.2.1)
net-protocol (0.2.2)
timeout
net-smtp (0.3.3)
net-smtp (0.5.0)
net-protocol
nio4r (2.5.9)
nio4r (2.7.3)
nokogiri (1.15.4)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
Expand Down Expand Up @@ -235,7 +235,7 @@ GEM
sqlite3 (1.4.2)
thor (1.2.2)
tilt (2.3.0)
timeout (0.4.0)
timeout (0.4.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.1.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/event_logger_rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ module EventLoggerRails
# The version of the gem.
#
# @return [String] The version of the gem.
VERSION = '0.3.1'
VERSION = '0.4.0'
end
Loading