From 0fc6b42ac3e18994118f0dd9ec970ce48f35a2b5 Mon Sep 17 00:00:00 2001 From: Chad Humphries Date: Thu, 29 May 2008 07:16:45 -0700 Subject: [PATCH] Updated changelog and version --- CHANGELOG | 2 ++ aasm.gemspec | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 78d9108..0a18068 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,5 @@ +* Incremented version number +* Cleaned up aasm_states_for_select to return the value as a string * Specs and bug fixes for the ActiveRecordPersistence, keeping persistence columns in sync Allowing for nil values in states for active record Only set state to default state before_validation_on_create diff --git a/aasm.gemspec b/aasm.gemspec index 1ed814f..ca3a77c 100644 --- a/aasm.gemspec +++ b/aasm.gemspec @@ -2,7 +2,7 @@ PKG_FILES = ["CHANGELOG", "MIT-LICENSE", "Rakefile", "README.rdoc", "TODO", "lib Gem::Specification.new do |s| s.name = 'aasm' - s.version = "0.0.2" + s.version = "2.0.0" 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.