Skip to content

Commit

Permalink
Update version to 0.2.1!
Browse files Browse the repository at this point in the history
  • Loading branch information
sugi committed Aug 27, 2018
1 parent 412100b commit 7eea713
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2018-08-27 Tatsuki Sugiura <sugi@nemui.org>

* Version: 0.2.1
* Support square era name chars (㍾ ㍽ ㍼ ㍻)

2017-07-25 Tatsuki Sugiura <sugi@nemui.org>

* Version: 0.2.0
Expand Down
7 changes: 4 additions & 3 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ Gemfile に以下のようにするか、
Date.today.strftime("%JF") # => "平成二十七年八月二十二日"
Date.civil(1311, 7, 20).strftime("%JF") # => "応長元年閏六月四日"

Date.today.to_wareki_date # => Wareki::Date インスタンス
Wareki::Date.new("明治", 8, 2, 1).to_date # => 標準 Date インスタンス 1875-02-01
Date.parse("正嘉元年 うるう3月 12日") # => 標準 Date インスタンス 1257-04-27

# Wareki::Date を直接扱う場合
Date.today.to_wareki_date # => Wareki::Date インスタンス
Wareki::Date.parse("正嘉元年 うるう3月 12日") # => Wareki::Date インスタンス
Date.parse("正嘉元年 うるう3月 12日") # => 標準 Date インスタンス 1257-04-27
Wareki::Date.new("明治", 8, 2, 1).to_date # => 標準 Date インスタンス 1875-02-01

== フォーマット文字列

Expand Down
2 changes: 1 addition & 1 deletion lib/wareki/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Wareki
VERSION = "0.2.0"
VERSION = "0.2.1"
end

0 comments on commit 7eea713

Please sign in to comment.