Skip to content

Commit 6520662

Browse files
committed
Release 0.5.0
1 parent 68b746d commit 6520662

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
=== April 15, 2012
2+
3+
* Use long instead of int for string methods
4+
* Use VALUE instead of int for comparison vars
5+
* Now compiles without warnings (OS X 10.7)
6+
17
=== April 19, 2012
28

39
* Pulled in fix for ruby 1.9 compilation error (sorry!!)

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Echoe.new('algorithms') do |p|
66
p.email = '[email protected]'
77
p.summary = 'A library of algorithms and data structures (containers).'
88
p.url = 'https://rubygems.org/gems/algorithms'
9-
p.version = "0.4.0"
9+
p.version = "0.5.0"
1010
p.retain_gemspec = true
1111
p.runtime_dependencies = []
1212
p.development_dependencies = ["rspec", "echoe"]

algorithms.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
Gem::Specification.new do |s|
44
s.name = "algorithms"
5-
s.version = "0.4.0"
5+
s.version = "0.5.0"
66

77
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
88
s.authors = ["Kanwei Li"]
9-
s.date = "2012-04-19"
9+
s.date = "2012-04-25"
1010
s.description = "A library of algorithms and data structures (containers)."
1111
s.email = "[email protected]"
1212
s.extensions = ["ext/algorithms/string/extconf.rb", "ext/containers/bst/extconf.rb", "ext/containers/deque/extconf.rb", "ext/containers/rbtree_map/extconf.rb", "ext/containers/splaytree_map/extconf.rb"]

0 commit comments

Comments
 (0)