From 9435edb5373f08eb6eb206e4e17ccbac495d6135 Mon Sep 17 00:00:00 2001 From: Adam Schubert Date: Wed, 29 Jun 2022 12:55:47 +0200 Subject: [PATCH] New version 1.2.27 --- archlinux/PKGBUILD | 2 +- cron_descriptor/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index a0f9e06..cf34977 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,5 +1,5 @@ pkgname=python-cron-descriptor -pkgver=1.2.26 +pkgver=1.2.27 pkgdesc="A Python library that converts cron expressions into human readable strings." pkgrel=1 arch=('any') diff --git a/cron_descriptor/__init__.py b/cron_descriptor/__init__.py index c32c93f..c5e9ed0 100644 --- a/cron_descriptor/__init__.py +++ b/cron_descriptor/__init__.py @@ -27,6 +27,6 @@ from .Exception import MissingFieldException, FormatException, WrongArgumentException -__version__ = '1.2.26' +__version__ = '1.2.27' __all__ = ['Options', 'ExpressionDescriptor', 'get_description', 'DescriptionTypeEnum', 'CasingTypeEnum', 'MissingFieldException', 'FormatException', 'WrongArgumentException'] diff --git a/setup.py b/setup.py index 3d10074..e4bed50 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setuptools.setup( name="cron_descriptor", - version="1.2.26", + version="1.2.27", description="A Python library that converts cron expressions " "into human readable strings.", author="Adam Schubert",