From f09456b5fd95c59f14bff476c55474fc2d69d235 Mon Sep 17 00:00:00 2001 From: thebjorn Date: Thu, 30 Nov 2023 15:41:48 +0100 Subject: [PATCH] tagged-upversion --- dkbuild.yml | 2 +- dkfileutils/__init__.py | 2 +- docs/conf.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dkbuild.yml b/dkbuild.yml index b0836a3..f58cb71 100644 --- a/dkbuild.yml +++ b/dkbuild.yml @@ -4,7 +4,7 @@ _schema: https://static.datakortet.no/schema/dkbuild.schema.yaml package: name: dkfileutils description: file and directory utilities - version: 1.4.6 + version: 1.4.7 created: 2015 build: diff --git a/dkfileutils/__init__.py b/dkfileutils/__init__.py index eccea89..b49c59a 100644 --- a/dkfileutils/__init__.py +++ b/dkfileutils/__init__.py @@ -1,3 +1,3 @@ """dkfileutils - simple, common file utilities. """ -__version__ = "1.4.6" +__version__ = "1.4.7" diff --git a/docs/conf.py b/docs/conf.py index fb998ee..7d52136 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,7 +48,7 @@ # built documents. # # The short X.Y version. -version = '1.4.6' +version = '1.4.7' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 1e75027..e999656 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from distutils.core import setup, Command from setuptools.command.test import test as TestCommand -version = '1.4.6' +version = '1.4.7' class PyTest(TestCommand):