From 6e4c32ca9de902dfba10cdcef63190057fde95fd Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Thu, 2 Jul 2020 13:28:18 +0200 Subject: [PATCH] Getting ready for 1.3.0 --- django_q/__init__.py | 2 +- docs/conf.py | 4 ++-- poetry.lock | 14 +++++++------- requirements.txt | 4 ++-- setup.py | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/django_q/__init__.py b/django_q/__init__.py index 7f95d38a..f6ac1068 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 2, 4) +VERSION = (1, 3, 0) default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index d67c355e..a0b13b27 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -71,9 +71,9 @@ # built documents. # # The short X.Y version. -version = '1.2' +version = '1.3' # The full version, including alpha/beta/rc tags. -release = '1.2.4' +release = '1.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/poetry.lock b/poetry.lock index be271084..60bd8c59 100644 --- a/poetry.lock +++ b/poetry.lock @@ -71,10 +71,10 @@ description = "The AWS SDK for Python" name = "boto3" optional = true python-versions = "*" -version = "1.14.14" +version = "1.14.15" [package.dependencies] -botocore = ">=1.17.14,<1.18.0" +botocore = ">=1.17.15,<1.18.0" jmespath = ">=0.7.1,<1.0.0" s3transfer = ">=0.3.0,<0.4.0" @@ -84,7 +84,7 @@ description = "Low-level, data-driven core of boto 3." name = "botocore" optional = true python-versions = "*" -version = "1.17.14" +version = "1.17.15" [package.dependencies] docutils = ">=0.10,<0.16" @@ -550,12 +550,12 @@ blessed = [ {file = "blessed-1.17.8.tar.gz", hash = "sha256:7671d057b2df6ddbefd809009fb08feb2f8d2d163d240b5e765088a90519b2f1"}, ] boto3 = [ - {file = "boto3-1.14.14-py2.py3-none-any.whl", hash = "sha256:4c2f5f9f28930e236845e2cddbe01cb093ca96dc1f5c6e2b2b254722018a2268"}, - {file = "boto3-1.14.14.tar.gz", hash = "sha256:87beffba2360b8077413f2d473cb828d0a5bda513bd1d6fb7b137c57b686aeb6"}, + {file = "boto3-1.14.15-py2.py3-none-any.whl", hash = "sha256:974a4a495fa876f4e8180e2690c840152f06cc3badbe865f05ed731efadcbf44"}, + {file = "boto3-1.14.15.tar.gz", hash = "sha256:3c654c1b8f9708e0b457ea1d312ee53451368d09b571ce737dc1f46484112bc1"}, ] botocore = [ - {file = "botocore-1.17.14-py2.py3-none-any.whl", hash = "sha256:6a2e9768dad8ae9771302d5922b977dca6bb9693f9b6a5f6ed0e7ac375e2ca40"}, - {file = "botocore-1.17.14.tar.gz", hash = "sha256:96d668ae5246d236ea83e4586349552d6584e8b1551ae2fccc0bd4ed528a746f"}, + {file = "botocore-1.17.15-py2.py3-none-any.whl", hash = "sha256:bb3d3e6aa1fb0caac5909421404218fa7fdcdfc5a1b597ec93cb3affb8326d26"}, + {file = "botocore-1.17.15.tar.gz", hash = "sha256:34ebc56471a75ea28bfd39f1665d58ee13229c75e8cd6c62b2e2abf1f3e75f0f"}, ] certifi = [ {file = "certifi-2020.6.20-py2.py3-none-any.whl", hash = "sha256:8fc0819f1f30ba15bdb34cceffb9ef04d99f420f68eb75d901e9560b8749fc41"}, diff --git a/requirements.txt b/requirements.txt index 73467fdb..98915ed2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,8 +7,8 @@ arrow==0.15.7 # via -r requirements.in asgiref==3.2.10 # via django blessed==1.17.8 # via -r requirements.in -boto3==1.14.14 # via -r requirements.in -botocore==1.17.14 # via boto3, s3transfer +boto3==1.14.15 # via -r requirements.in +botocore==1.17.15 # via boto3, s3transfer certifi==2020.6.20 # via requests chardet==3.0.4 # via requests croniter==0.3.34 # via -r requirements.in diff --git a/setup.py b/setup.py index 9cad6e81..b06291f1 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def run(self): setup( name='django-q', - version='1.2.4', + version='1.3.0', author='Ilan Steemers', author_email='koed00@gmail.com', keywords='django multiprocessing worker scheduler queue',