Skip to content

Commit 230f572

Browse files
committed
ready for version v0.1.0
1 parent 377bfee commit 230f572

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
@@ -4,4 +4,5 @@ v0.0.2, 2016-01-06 -- Some kwargs optional, hypothesis tests, minor enhancements
44
v0.0.3, 2016-02-09 -- Arrival distributions, mmc options removed, fix server schedule bugs
55
v0.0.4, 2016-02-20 -- Empirical and UserDefined distributions added, tidy ups
66
v0.0.5, 2016-03-18 -- State space tracker plug-and-playable, add rejection dictionary
7-
v0.0.6 2016-04-04 -- Exactness implemented, restructure some features e.g. times_to_deadlock, custom simulation names
7+
v0.0.6 2016-04-04 -- Exactness implemented, restructure some features e.g. times_to_deadlock, custom simulation names
8+
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, state_tracker. simulate_until_max_time() takes argument max_simulation_time.

ciw/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
from import_params import *
1111
from network import *
1212

13-
__version__ = '0.0.6'
13+
__version__ = '0.1.0'

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

0 commit comments

Comments
 (0)