Skip to content

Commit

Permalink
33 Version bump to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
id774 committed Sep 30, 2013
1 parent 4517f26 commit 097138c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.1.0 0.1.1
2 changes: 1 addition & 1 deletion doc/ChangeLog
@@ -1,4 +1,4 @@
=== 0.1.1 / 2013-09-29 === 0.1.1 / 2013-09-30


* Correspond to empty hash. * Correspond to empty hash.


Expand Down
2 changes: 1 addition & 1 deletion lib/kmeans.rb
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-


module Kmeans module Kmeans
VERSION = "0.1.0" VERSION = "0.1.1"
require File.dirname(__FILE__) + "/kmeans/pair" require File.dirname(__FILE__) + "/kmeans/pair"
require File.dirname(__FILE__) + "/kmeans/pearson" require File.dirname(__FILE__) + "/kmeans/pearson"
require File.dirname(__FILE__) + "/kmeans/cluster" require File.dirname(__FILE__) + "/kmeans/cluster"
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/kmeans_spec.rb
Expand Up @@ -5,7 +5,7 @@
describe Kmeans do describe Kmeans do
context 'のバージョンを参照した場合' do context 'のバージョンを参照した場合' do
it "バージョンが正しく表示される" do it "バージョンが正しく表示される" do
expect = '0.1.0' expect = '0.1.1'
Kmeans.const_get(:VERSION).should be_true Kmeans.const_get(:VERSION).should be_true
Kmeans.const_get(:VERSION).should == expect Kmeans.const_get(:VERSION).should == expect
end end
Expand Down

0 comments on commit 097138c

Please sign in to comment.