Skip to content

Commit

Permalink
1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sonots committed Aug 19, 2019
1 parent 4278b3e commit 8127ce0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
/tmp/
Gemfile.lock
/html/
/vendor/
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 1.4.0

Enhancements:

* Add support for changing severity using bang methods [#15](https://github.com/ruby/logger/pull/15) (thanks to ioquatix)
* Set filename when initializing logger with a File object to make reopen work [#30](https://github.com/ruby/logger/pull/30) (thanks to jeremyevans)
* Add option to set the binary mode of the log device [#33](https://github.com/ruby/logger/pull/33) (thanks to refaelfranca)

Also, large refactorings of codes and testing libraries are introduced.
2 changes: 1 addition & 1 deletion lib/logger/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

class Logger
VERSION = "1.3.0"
VERSION = "1.4.0"
end
4 changes: 2 additions & 2 deletions logger.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ end
Gem::Specification.new do |spec|
spec.name = "logger"
spec.version = Logger::VERSION
spec.authors = ["SHIBATA Hiroshi"]
spec.email = ["[email protected]"]
spec.authors = ["Naotoshi Seo", "SHIBATA Hiroshi"]
spec.email = ["[email protected]", "[email protected]"]

spec.summary = %q{Provides a simple logging utility for outputting messages.}
spec.description = %q{Provides a simple logging utility for outputting messages.}
Expand Down

0 comments on commit 8127ce0

Please sign in to comment.