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