Skip to content

Commit adf6d62

Browse files
committed
Bumped version to 0.1.1
Also added a CHANGELOG file.
1 parent 7fbfa53 commit adf6d62

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.rdoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
== 0.1.1
2+
3+
* Bug Fixes
4+
* Fixed issues running on Ruby 1.9.2
5+
6+
== 0.1.0
7+
8+
* Initial release

activeadmin.gemspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
Gem::Specification.new do |s|
77
s.name = %q{activeadmin}
8-
s.version = "0.1.0"
8+
s.version = "0.1.1"
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Greg Bell"]
12-
s.date = %q{2010-09-07}
12+
s.date = %q{2010-09-15}
1313
s.description = %q{The administration framework for Ruby on Rails.}
1414
s.email = %q{gregdbell@gmail.com}
1515
s.extra_rdoc_files = [
@@ -24,6 +24,7 @@ Gem::Specification.new do |s|
2424
"README.rdoc",
2525
"Rakefile",
2626
"active_admin.gemspec",
27+
"activeadmin.gemspec",
2728
"lib/active_admin.rb",
2829
"lib/active_admin/action_builder.rb",
2930
"lib/active_admin/action_items.rb",
@@ -109,7 +110,7 @@ Gem::Specification.new do |s|
109110
s.homepage = %q{http://github.com/gregbell/active_admin}
110111
s.rdoc_options = ["--charset=UTF-8"]
111112
s.require_paths = ["lib"]
112-
s.rubygems_version = %q{1.3.6}
113+
s.rubygems_version = %q{1.3.7}
113114
s.summary = %q{The administration framework for Ruby on Rails.}
114115
s.test_files = [
115116
"spec/integration/dashboard_spec.rb",
@@ -148,7 +149,7 @@ Gem::Specification.new do |s|
148149
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
149150
s.specification_version = 3
150151

151-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
152+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
152153
s.add_runtime_dependency(%q<rails>, [">= 3.0.0"])
153154
s.add_runtime_dependency(%q<formtastic>, [">= 1.1.0.beta"])
154155
s.add_runtime_dependency(%q<will_paginate>, [">= 3.0.pre2"])

lib/active_admin/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ActiveAdmin
2-
VERSION = '0.1.0'
2+
VERSION = '0.1.1'
33
end

0 commit comments

Comments
 (0)