Skip to content

Commit

Permalink
version bump to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigomanhaes committed Sep 3, 2011
1 parent 7c45a0a commit 8649434
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
v0.1.0, 2011-05-11
0.2.0, 2011-09-03

* support to multiple entry and exit actions
* support to transition actions (accepts multiple actions)
* support to multiple guards
* support to callables on all callbacks (entry, exit, action, guards)
* support to define states and transactions for an individual object
* support event parameters, passing them to the actions
* support to one event to choose among multiple possible transitions, based on their guards
* compatibility to python 2.4, 2.5, 2.6, 2.7, 3.1, and 3.2


0.1.0, 2011-05-11

Main features for this initial release:
* definition of states, transitions and events
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages

version = '0.1.0'
version = '0.2.0'
readme = open('README.rst').read()

setup(name='fluidity-sm',
version=version,
description='Fluidity: state machine implementation for Python objects',
long_description=readme,
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries',
],
keywords='state machine python dsl',
Expand Down

0 comments on commit 8649434

Please sign in to comment.