Skip to content

Commit 7379e35

Browse files
committed
ready for version v0.2.1
1 parent 2f9b77f commit 7379e35

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ v0.0.5, 2016-03-18 -- State space tracker plug-and-playable, add rejection dicti
77
v0.0.6 2016-04-04 -- Exactness implemented, restructure some features e.g. times_to_deadlock, custom simulation names
88
v0.1.0 2016-04-25 -- Refactor inputs. Simulation tkes in a Network object, helper functions to import yml and dictionay to a Network object. Simulation object takes optional arguments: deadlock_detector, exact, tracker. simulate_until_max_time() takes argument max_simulation_time.
99
v0.1.1 2016-06-06 -- Ability to incorporate behaviour nodes, data records are now named tuples.
10-
v0.2.0 2016-06-20 -- Python 3.4 and 3.5 compatible along with 2.7. Data records now kept in list.
10+
v0.2.0 2016-06-20 -- Python 3.4 and 3.5 compatible along with 2.7. Data records now kept in list.
11+
v0.2.1 2016-06-29 -- Priority classes implemented.

ciw/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
from .import_params import *
1313
from .network import *
1414

15-
__version__ = '0.2.0'
15+
__version__ = '0.2.1'

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '0.2.0'
62+
version = '0.2.1'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '0.2.0'
64+
release = '0.2.1'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='Ciw',
5-
version='0.2.0',
5+
version='0.2.1',
66
author='Geraint Palmer, Vincent Knight',
77
author_email=('palmer.geraint@googlemail.com'),
88
packages = ['ciw'],

0 commit comments

Comments
 (0)