From fab3cbdb7567275559c78d260d9a316ea13c43de Mon Sep 17 00:00:00 2001 From: Erik O'Shaughnessy Date: Tue, 27 Oct 2015 15:01:33 -0500 Subject: [PATCH] 0.1.0 --- GameOfLife/__init__.py | 2 +- Makefile | 4 ++-- VERSION | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/GameOfLife/__init__.py b/GameOfLife/__init__.py index b46dfae..2eda4f2 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.18" +__version__ = "0.1.0" from .cell import Cell as Cell from .world import OptimizedWorld as World diff --git a/Makefile b/Makefile index f7d7984..163fa41 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ TARGET= GameOfLife MAJOR=0 -MINOR=0 -POINT=18 +MINOR=1 +POINT=0 VERSION= ${MAJOR}.${MINOR}.${POINT} QVERSION= "'${VERSION}'" VERSION_FILE= VERSION diff --git a/VERSION b/VERSION index 32786aa..6e8bf73 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.18 +0.1.0