Skip to content

Commit 16224f5

Browse files
committed
Merge pull request #157 from id774/devel
Version bump to v14.12.1
2 parents 641ede4 + 361e813 commit 16224f5

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Version:20141227
1+
# Version:20150103
22

33
source "http://rubygems.org"
44
source "http://gems.github.com"
55

66
gem 'json'
77
gem 'sqlite3'
8-
gem 'activesupport'
9-
gem 'activerecord'
8+
gem 'activesupport', '~> 4.1.0'
9+
gem 'activerecord', '~> 4.1.0'
1010
gem 'hashie'
1111
gem 'gcalapi'
1212
gem 'xml-simple'

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.12.0
1+
14.12.1

doc/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
=== 14.12.1 / 2015-01-03
2+
3+
* Fix Gemfile problem
4+
5+
16
=== 14.12.0 / 2014-12-27
27

38
* Rewrite obsolete methods.

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.12.0-devel"
2+
VERSION = "14.12.1"
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:: Dec 30, 2014
7-
# Copyright:: Copyright (c) 2012-2014 Automatic Ruby Developers.
6+
# Updated:: Jan 3, 2015
7+
# Copyright:: Copyright (c) 2012-2015 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.12.0-devel" }
30+
it { expect(subject).to eq "14.12.1" }
3131
end
3232

3333
describe "#(root)_dir" do

0 commit comments

Comments
 (0)