# HG changeset patch # User Michael Granger # Date 1630534932 25200 # Wed Sep 01 15:22:12 2021 -0700 # Node ID afa03e587fd6aa2cccd016847d17e27c5bfdd498 # Parent 5a383cbf5393d7b47b8dd3a7fd63edf5a5b225ca Bump the minor version, update history. diff --git a/History.md b/History.md --- a/History.md +++ b/History.md @@ -1,6 +1,14 @@ # Release History for pushdown --- +## v0.3.0 [2021-09-01] Michael Granger + +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 diff --git a/lib/pushdown.rb b/lib/pushdown.rb --- a/lib/pushdown.rb +++ b/lib/pushdown.rb @@ -15,7 +15,7 @@ extend Loggability # Package version - VERSION = '0.2.0' + VERSION = '0.3.0' # Loggability API -- create a logger for Pushdown classes and modules