File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 8
8
/tmp /
9
9
Gemfile.lock
10
10
/html /
11
+ /vendor /
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
class Logger
4
- VERSION = "1.3 .0"
4
+ VERSION = "1.4 .0"
5
5
end
Original file line number Diff line number Diff line change 7
7
Gem ::Specification . new do |spec |
8
8
spec . name = "logger"
9
9
spec . version = Logger ::VERSION
10
- spec . authors = [ "SHIBATA Hiroshi" ]
11
- spec . email = [ "hsbt@ruby-lang.org" ]
10
+ spec . authors = [ "Naotoshi Seo" , " SHIBATA Hiroshi"]
11
+ spec . email = [ "sonots@gmail.com" , " hsbt@ruby-lang.org"]
12
12
13
13
spec . summary = %q{Provides a simple logging utility for outputting messages.}
14
14
spec . description = %q{Provides a simple logging utility for outputting messages.}
You can’t perform that action at this time.
0 commit comments