Skip to content

Commit 312d4c3

Browse files
committed
ready for v0.2.2
1 parent 34ecfc3 commit 312d4c3

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ v0.0.6 2016-04-04 -- Exactness implemented, restructure some features e.g. times
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.
1010
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.
11+
v0.2.1 2016-06-29 -- Priority classes implemented.
12+
v0.2.2 2016-07-06 -- Baulking implemented, and minor fixes to order of unblocking.

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.1'
15+
__version__ = '0.2.2'

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.1'
62+
version = '0.2.2'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '0.2.1'
64+
release = '0.2.2'
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.1',
5+
version='0.2.2',
66
author='Geraint Palmer, Vincent Knight',
77
author_email=('palmer.geraint@googlemail.com'),
88
packages = ['ciw'],

0 commit comments

Comments
 (0)