Skip to content

Commit 6732381

Browse files
committed
ready for v0.0.6
1 parent 0f1ffb4 commit 6732381

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ v0.0.1, 2015-12-14 -- Initial release
33
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
6-
v0.0.5, 2016-03-18 -- State space tracker plug-and-playable, add rejection dictionary
6+
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

ciw/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from exit_node import ExitNode
77
from node import Node
88
from state_tracker import *
9+
from exactnode import *
910
from import_params import load_parameters
1011

11-
__version__ = '0.0.5'
12+
__version__ = '0.0.6'

docs/conf.py

Lines changed: 3 additions & 3 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.5'
62+
version = '0.0.6'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '0.0.5'
64+
release = '0.0.6'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.
@@ -283,7 +283,7 @@
283283
# dir menu entry, description, category)
284284
texinfo_documents = [
285285
(master_doc, 'Ciw', u'Ciw Documentation',
286-
author, 'Ciw', 'A simulation library for open queueing networks.',
286+
author, 'Ciw', 'A discrete event simulation framework for open queueing networks',
287287
'Miscellaneous'),
288288
]
289289

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.5',
5+
version='0.0.6',
66
author='Geraint Palmer, Vincent Knight',
77
author_email=('palmer.geraint@googlemail.com'),
88
packages = ['ciw'],

0 commit comments

Comments
 (0)