1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00

Sync up version numbers - bumping minor rev so the github gem rebuilds

This commit is contained in:
Scott Barron 2008-07-22 08:12:11 -04:00
parent bf8ed18ed2
commit 54c631e3cb
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ PKG_FILES = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README.rdoc", "TODO", "lib
Gem::Specification.new do |s|
s.name = 'aasm'
s.version = "2.0.1"
s.version = "2.0.2"
s.summary = 'State machine mixin for Ruby objects'
s.description = <<-EOF
AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects.

View file

@ -1,5 +1,5 @@
module AASM
module VERSION
STRING = '0.0.2'
STRING = '2.0.2'
end
end