diff --git a/dkbuild.yml b/dkbuild.yml index f68fe22..5bb4b5b 100644 --- a/dkbuild.yml +++ b/dkbuild.yml @@ -2,8 +2,8 @@ _schema: https://static.datakortet.no/schema/dkbuild.schema.yaml package: name: ttcal - description: UNKNOWN - version: 2.0.3 + description: Simple calendar operations + version: 2.0.4 created: 2013 build: diff --git a/docs/conf.py b/docs/conf.py index 9f264c8..a5151b1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '2.0.3' +version = '2.0.4' # The full version, including alpha/beta/rc tags. -release = '2.0.3' +release = '2.0.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 6033f78..7d0b2f1 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ import sys, os import setuptools -version = '2.0.3' +version = '2.0.4' DIRNAME = os.path.dirname(__file__) description = open(os.path.join(DIRNAME, 'README.rst'), 'r').read() diff --git a/ttcal/__init__.py b/ttcal/__init__.py index 0e2ac1f..ab11b95 100644 --- a/ttcal/__init__.py +++ b/ttcal/__init__.py @@ -1,7 +1,7 @@ """ Date classes (originally from TikTok). """ -__version__ = '2.0.3' +__version__ = '2.0.4' from .day import Day, Days, Today # noqa from .duration import Duration, Period # noqa from .calfns import chop, isoweek # noqa