From 5e5ee81559aacebc136d904bfb64a08981e8993b Mon Sep 17 00:00:00 2001 From: Bjorn Date: Fri, 18 Oct 2024 13:25:02 +0200 Subject: [PATCH] tagged-upversion --- dkbuild.yml | 2 +- docs/conf.py | 4 ++-- pydeps/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dkbuild.yml b/dkbuild.yml index 7da8786..103f040 100644 --- a/dkbuild.yml +++ b/dkbuild.yml @@ -3,7 +3,7 @@ _schema: https://static.datakortet.no/schema/dkbuild.schema.yaml package: name: pydeps description: Display module dependencies - version: 2.0.0 + version: 2.0.1 created: 2014 build: diff --git a/docs/conf.py b/docs/conf.py index 726936b..ccc0e40 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '2.0.0' +version = '2.0.1' # The full version, including alpha/beta/rc tags. -release = '2.0.0' +release = '2.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pydeps/__init__.py b/pydeps/__init__.py index 71ac011..7ed0cd2 100644 --- a/pydeps/__init__.py +++ b/pydeps/__init__.py @@ -3,4 +3,4 @@ Python module dependency visualization. This package installs the ``pydeps`` command, and normal usage will be to use it from the command line. """ -__version__ = "2.0.0" +__version__ = "2.0.1" diff --git a/setup.py b/setup.py index ca0357c..f62bb47 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ import setuptools from setuptools.command.test import test as TestCommand -version='2.0.0' +version='2.0.1' class PyTest(TestCommand):