Skip to content

Commit 8127ce0

Browse files
committed
1.4.0
1 parent 4278b3e commit 8127ce0

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
/tmp/
99
Gemfile.lock
1010
/html/
11+
/vendor/

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# 1.4.0
2+
3+
Enhancements:
4+
5+
* Add support for changing severity using bang methods [#15](https://github.com/ruby/logger/pull/15) (thanks to ioquatix)
6+
* Set filename when initializing logger with a File object to make reopen work [#30](https://github.com/ruby/logger/pull/30) (thanks to jeremyevans)
7+
* Add option to set the binary mode of the log device [#33](https://github.com/ruby/logger/pull/33) (thanks to refaelfranca)
8+
9+
Also, large refactorings of codes and testing libraries are introduced.

lib/logger/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
class Logger
4-
VERSION = "1.3.0"
4+
VERSION = "1.4.0"
55
end

logger.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ end
77
Gem::Specification.new do |spec|
88
spec.name = "logger"
99
spec.version = Logger::VERSION
10-
spec.authors = ["SHIBATA Hiroshi"]
11-
spec.email = ["[email protected]"]
10+
spec.authors = ["Naotoshi Seo", "SHIBATA Hiroshi"]
11+
1212

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

0 commit comments

Comments
 (0)