Skip to content

Commit

Permalink
Update for v4.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
azumakuniyuki committed Aug 31, 2018
1 parent 49a6420 commit d9ec672
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 22 deletions.
9 changes: 4 additions & 5 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,20 @@ RELEASE NOTES for Ruby version of Sisimai
- releases: "https://github.com/sisimai/rb-Sisimai/releases"
- download: "https://rubygems.org/gems/sisimai"

v4.22.7p4
v4.23.0
--------------------------------------------------------------------------------
- release: ""
- version: ""
- version: "4.23.0"
- changes:
- Update regular expression in Sisimai::Bite::Email::Office365 for detecting
failure on SMTP RCPT.
- #124 Implement Sisimai::Mail::Memory class for reading bounce messages from
memory(variable).
- Update regular expression in Sisimai::Bite::Email::Office365 for detecting
failure on SMTP RCPT.
- #126 Fix awful bugs(NoMethodError) in Sisimai::Bite::Email::Biglobe, EZweb,
and KDDI. Thanks to @rinmu.
- #128 Less method calls: use method chain, bang method.
- Import commit sisimai/p5-Sisimai@cccb4ef Some test code have been loosened
for UTC+13(Pacific/Tongatapu), UTC+14(Pacific/Kiritimati).
-

v4.22.7
--------------------------------------------------------------------------------
Expand Down
16 changes: 8 additions & 8 deletions README-JA.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ Install

```shell
$ sudo gem install sisimai
Fetching: sisimai-4.22.2.gem (100%)
Successfully installed sisimai-4.22.2
Parsing documentation for sisimai-4.22.2
Installing ri documentation for sisimai-4.22.2
Fetching: sisimai-4.23.0.gem (100%)
Successfully installed sisimai-4.23.0
Parsing documentation for sisimai-4.23.0
Installing ri documentation for sisimai-4.23.0
Done installing documentation for sisimai after 6 seconds
1 gem installed
```
Expand All @@ -99,8 +99,8 @@ gem install bundle rake rspec coveralls
...
4 gems installed
bundle exec rake install
sisimai 4.22.2 built to pkg/sisimai-4.22.2.gem.
sisimai (4.22.2) installed.
sisimai 4.23.0 built to pkg/sisimai-4.23.0.gem.
sisimai (4.23.0) installed.
```

Usage
Expand All @@ -116,7 +116,7 @@ Basic usage
require 'sisimai'
v = Sisimai.make('/path/to/mbox') # or path to Maildir/

# Beginning with v4.22.7p2, both make() and dump() method of Sisimai class can
# Beginning with v4.23.0, both make() and dump() method of Sisimai class can
# read bounce messages from variable instead of a path to mailbox
f = File.open('/path/to/mbox', 'r'); # or path to Maildir/
v = Sisimai.make(f.read)
Expand Down Expand Up @@ -244,7 +244,7 @@ Differences between Ruby version and Perl version
| メール解析速度(1000通のメール) | 3.75秒[2] | 1.70秒 |
| インストール方法 | gem install | cpanm, cpm |
| 依存モジュール数(コアモジュールを除く) | 1モジュール | 2モジュール |
| LOC:ソースコードの行数 | 12000行 | 8600行 |
| LOC:ソースコードの行数 | 11700行 | 8500行 |
| テスト件数(spec/,t/,xt/ディレクトリ) | 218000件 | 236000件 |
| ライセンス | 二条項BSD | 二条項BSD |
| 開発会社によるサポート契約 | 準備中 | 提供中 |
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ Install

```shell
$ sudo gem install sisimai
Fetching: sisimai-4.22.2.gem (100%)
Successfully installed sisimai-4.22.2
Parsing documentation for sisimai-4.22.2
Installing ri documentation for sisimai-4.22.2
Fetching: sisimai-4.23.0.gem (100%)
Successfully installed sisimai-4.23.0
Parsing documentation for sisimai-4.23.0
Installing ri documentation for sisimai-4.23.0
Done installing documentation for sisimai after 6 seconds
1 gem installed
```
Expand All @@ -104,8 +104,8 @@ gem install bundle rake rspec coveralls
...
4 gems installed
bundle exec rake install
sisimai 4.22.2 built to pkg/sisimai-4.22.2.gem.
sisimai (4.22.2) installed.
sisimai 4.23.0 built to pkg/sisimai-4.23.0.gem.
sisimai (4.23.0) installed.
```

Usage
Expand All @@ -121,7 +121,7 @@ messages like following.
require 'sisimai'
v = Sisimai.make('/path/to/mbox') # or path to Maildir/

# Beginning with v4.22.7p2, both make() and dump() method of Sisimai class can
# Beginning with v4.23.0, both make() and dump() method of Sisimai class can
# read bounce messages from variable instead of a path to mailbox
f = File.open('/path/to/mbox', 'r'); # or path to Maildir/
v = Sisimai.make(f.read)
Expand Down Expand Up @@ -248,7 +248,7 @@ and bounceHammer are available at
| The speed of parsing email(1000 emails) | 3.75s[2] | 1.70s |
| How to install | gem install | cpanm, cpm |
| Dependencies (Except core modules) | 1 module | 2 modules |
| LOC:Source lines of code | 12000 lines | 8600 lines |
| LOC:Source lines of code | 11700 lines | 8500 lines |
| The number of tests(spec/,t/,xt/) directory | 218000 tests | 236000 tests |
| License | BSD 2-Clause | BSD 2-Clause |
| Support Contract provided by Developer | Coming soon | Available |
Expand Down
2 changes: 1 addition & 1 deletion lib/sisimai/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Define the version number of Sisimai
module Sisimai
VERSION = '4.22.7p2'.freeze
VERSION = '4.23.0'.freeze
end

0 comments on commit d9ec672

Please sign in to comment.