Bump the minor version, update history.
2 files changed, 9 insertions(+), 1 deletions(-)

M History.md
M lib/pushdown.rb
M History.md +8 -0
@@ 1,6 1,14 @@ 
 # Release History for pushdown
 
 ---
+## v0.3.0 [2021-09-01] Michael Granger <ged@faeriemud.org>
+
+Change:
+
+- Rework how state data is passed around. Instead of passing it through the
+  transition callbacks, which proved to be a terrible idea, the States
+  themselves take an optional state argument to their constructor.
+
 
 ## v0.2.0 [2021-08-31] Michael Granger <ged@faeriemud.org>
 

          
M lib/pushdown.rb +1 -1
@@ 15,7 15,7 @@ module Pushdown
 	extend Loggability
 
 	# Package version
-	VERSION = '0.2.0'
+	VERSION = '0.3.0'
 
 
 	# Loggability API -- create a logger for Pushdown classes and modules