Skip to content

Commit cc1f042

Browse files
committed
#97 ChangeLog for 14.2.0
1 parent c46ca6a commit cc1f042

File tree

7 files changed

+35
-8
lines changed

7 files changed

+35
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ For more info, refer to the document (doc/README).
7575
Environment
7676
-----------
7777

78-
Ruby 1.9 - 2.1. See Gemfile.
78+
After Ruby 1.9. See Gemfile.
7979

8080

8181
Development

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.1.0
1+
14.2.0

doc/ChangeLog

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
=== 14.2.0 / 2014-02-26
2+
3+
* Added new plugins.
4+
5+
* Publish::AmazonS3
6+
7+
* Improvement File Saving Plugin
8+
9+
* Store::TargetLink rename to Store::File.
10+
* Store::File rewrite link to file URI scheme.
11+
* Enable file URI scheme in RSS 2.0 Feed.
12+
* Store::File enable get file from Amazon S3.
13+
14+
* Improvement Subscription::Text
15+
16+
* Read text from TSV formatted files.
17+
* Add fields description, author, comments to RSS 2.0 Feed.
18+
19+
* Into details Log messages.
20+
21+
* Use 'double' instead of 'mock', 'stub' for rspec-mocks.
22+
23+
* Improvement CI with network connection.
24+
25+
* Refactoring to divide Feed::Parser to Feed::Maker.
26+
27+
128
=== 14.1.0 / 2014-01-24
229

330
* Fix dependency conflict.

doc/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ TODO
496496
Environment
497497
===========
498498

499-
Ruby 1.9 - 2.1.
499+
After Ruby 1.9.
500500

501501
Depend on the packages that described in Gemfile.
502502

doc/README.ja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ TODO
504504
動作環境
505505
========
506506

507-
Ruby 1.9 - 2.1
507+
Ruby 1.9 以降
508508

509509
Gemfile に記述された gem パッケージに依存
510510

lib/automatic/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Automatic
2-
VERSION = "14.1.0-devel"
2+
VERSION = "14.2.0"
33
end

spec/lib/automatic_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# Author:: kzgs
44
# 774 <http://id774.net>
55
# Created:: Mar 9, 2012
6-
# Updated:: Jan 25, 2014
7-
# Copyright:: Copyright (c) 2012-2013 Automatic Ruby Developers.
6+
# Updated:: Feb 26, 2014
7+
# Copyright:: Copyright (c) 2012-2014 Automatic Ruby Developers.
88
# License:: Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0.
99

1010
require File.expand_path(File.join(File.dirname(__FILE__), '../spec_helper'))
@@ -27,7 +27,7 @@
2727
describe "#version" do
2828
subject { Automatic.const_get(:VERSION) }
2929

30-
it { expect(subject).to eq "14.1.0-devel" }
30+
it { expect(subject).to eq "14.2.0" }
3131
end
3232

3333
describe "#(root)_dir" do

0 commit comments

Comments
 (0)