From ef0dad86bab784fbdf859f3673ed1efd6bcfb42eafc289efdfcd28804adea687 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Fri, 12 Mar 2021 03:44:05 +0000 Subject: [PATCH] - Update to 1.0.8: * Update `_expand` to lowercase each component of the expression. * Fix _expand to reject int literals with underscores * Fix combination of star and invalid expression bugs * Security fix: fix overflow when using cron ranges * Fix #155: raise CroniterBadCronError when error syntax * Fix match when datetime has microseconds * Added Python 3.8 and 3.9 support OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-croniter?expand=0&rev=30 --- croniter-0.3.36.tar.gz | 3 --- croniter-1.0.8.tar.gz | 3 +++ python-croniter.changes | 12 ++++++++++++ python-croniter.spec | 6 +++--- 4 files changed, 18 insertions(+), 6 deletions(-) delete mode 100644 croniter-0.3.36.tar.gz create mode 100644 croniter-1.0.8.tar.gz diff --git a/croniter-0.3.36.tar.gz b/croniter-0.3.36.tar.gz deleted file mode 100644 index ad7843a..0000000 --- a/croniter-0.3.36.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d3098e50f7edc7480470455d42f09c501fa1bb7e2fc113526ec6e90b068f32c -size 29539 diff --git a/croniter-1.0.8.tar.gz b/croniter-1.0.8.tar.gz new file mode 100644 index 0000000..28d829b --- /dev/null +++ b/croniter-1.0.8.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b830d787c9993361b74eaad7d7396090d7f2d9db41ceb4a52cb75da461c3ed +size 31019 diff --git a/python-croniter.changes b/python-croniter.changes index 69df282..b58afcd 100644 --- a/python-croniter.changes +++ b/python-croniter.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Fri Mar 12 03:42:51 UTC 2021 - Steve Kowalik + +- Update to 1.0.8: + * Update `_expand` to lowercase each component of the expression. + * Fix _expand to reject int literals with underscores + * Fix combination of star and invalid expression bugs + * Security fix: fix overflow when using cron ranges + * Fix #155: raise CroniterBadCronError when error syntax + * Fix match when datetime has microseconds + * Added Python 3.8 and 3.9 support + ------------------------------------------------------------------- Thu Nov 26 09:22:47 UTC 2020 - Dirk Mueller diff --git a/python-croniter.spec b/python-croniter.spec index 1f3183a..d2d41f7 100644 --- a/python-croniter.spec +++ b/python-croniter.spec @@ -1,7 +1,7 @@ # # spec file for package python-croniter # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,13 +18,13 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-croniter -Version: 0.3.36 +Version: 1.0.8 Release: 0 Summary: Python iterators for datetime objects with cron-like format License: MIT -Group: Development/Languages/Python URL: http://github.com/kiorky/croniter Source: https://files.pythonhosted.org/packages/source/c/croniter/croniter-%{version}.tar.gz +BuildRequires: %{python_module future} BuildRequires: %{python_module natsort} BuildRequires: %{python_module pytest >= 3.0.3} BuildRequires: %{python_module python-dateutil}