From 5ab3eb66482e2c298ddadd23aa2991481aa292d8 Mon Sep 17 00:00:00 2001 From: Erik O'Shaughnessy Date: Tue, 27 Oct 2015 14:18:22 -0500 Subject: [PATCH] 0.0.18 --- GameOfLife/__init__.py | 2 +- Makefile | 2 +- VERSION | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 VERSION diff --git a/GameOfLife/__init__.py b/GameOfLife/__init__.py index 8b81227..b46dfae 100644 --- a/GameOfLife/__init__.py +++ b/GameOfLife/__init__.py @@ -9,7 +9,7 @@ __author__ = '\n'.join(["Erik O'Shaughnessy", 'erik.oshaughnessy@gmail.com', 'https://github.com/JnyJny/GameOfLife']) -__version__ = "0.0.17" +__version__ = "0.0.18" from .cell import Cell as Cell from .world import OptimizedWorld as World diff --git a/Makefile b/Makefile index 1e6f94b..f8c5437 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ TARGET= GameOfLife MAJOR=0 MINOR=0 -POINT=17 +POINT=18 VERSION= ${MAJOR}.${MINOR}.${POINT} QVERSION= "'${VERSION}'" VERSION_FILE= VERSION diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..32786aa --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.0.18