From d557ce1eaf36c8a193e9c46711c5ed8c120e0eb9 Mon Sep 17 00:00:00 2001 From: afabiani Date: Thu, 27 Feb 2020 10:53:55 +0100 Subject: [PATCH] - Bump to version 2.0.1 --- CHANGELOG.md | 9 +++++++++ requirements.txt | 4 ++-- setup.cfg | 43 ++++++++++++++++++++++--------------------- 3 files changed, 33 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7aad42d..08c0d6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Change Log +## 2.0.1 [2020-02-27] + +
  • 2020-02-17: dependabot-preview[bot] Update idna requirement from <2.9,>=2.5 to >=2.5,<2.10
  • +
  • 2020-02-13: dependabot-preview[bot] Bump markdown from 2.6.11 to 3.2.1
  • +
  • 2020-02-05: afabiani - Python3 / Django 2+ official release 2.0.0
  • +
  • 2020-01-16: afabiani - 2020-01-16: Python 3 / Django 2 Compatibility
  • +
  • 2020-01-16: afabiani - 2020-01-14: Python 3 / Django 2 Compatibility
  • + ## 2.0.0 [2020-01-16] +
  • 2020-01-14: Python 3 / Django 2 Compatibility
  • ## 1.0.17 [2020-01-14] diff --git a/requirements.txt b/requirements.txt index 6c3b6db..c53b558 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -django>=1.11 +django>=2.2.0,<3.0 idna>=2.5,<2.10 requests>=2.13.0 Markdown==3.2.1 MarkupSafe==1.1.1 -jsonfield +jsonfield==2.0.2 djangorestframework>=3.8.2 urllib3==1.25.8 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index cd35318..644674e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-mapstore-adapter -version = 2.0.0 +version = 2.0.1 description = Django MapStore2 Adapter author = Alessio Fabiani author_email = alessio.fabiani@geo-solutions.it @@ -8,33 +8,34 @@ url = https://github.com/GeoNode/django-mapstore-adapter download_url = https://github.com/GeoNode/django-mapstore-adapter/tarball/master keywords = django, mapstore, mapstore2 classifiers = - Development Status :: 5 - Production/Stable - Environment :: Web Environment - Framework :: Django - Intended Audience :: Developers - License :: OSI Approved :: BSD License - Operating System :: OS Independent - Topic :: Internet :: WWW/HTTP - Programming Language :: Python - Programming Language :: Python :: 2 - Programming Language :: Python :: 2.7 - Programming Language :: Python :: 3 - Programming Language :: Python :: 3.3 - Programming Language :: Python :: 3.4 - Programming Language :: Python :: 3.5 - Programming Language :: Python :: 3.6 + Development Status :: 5 - Production/Stable + Environment :: Web Environment + Framework :: Django + Intended Audience :: Developers + License :: OSI Approved :: BSD License + Operating System :: OS Independent + Topic :: Internet :: WWW/HTTP + Programming Language :: Python + Programming Language :: Python :: 2 + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.3 + Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 [options] packages = find: include_package_data = True zip_safe = False install_requires = - django >= 1.11 - requests >= 2.13.0 - Markdown - MarkupSafe + django >= 2.2.0, < 3.0 + idna >= 2.5, < 2.10 + requests >= 2.13.0 + Markdown == 2.6.11 + MarkupSafe == 1.1.1 djangorestframework >= 3.8.2 - jsonfield + jsonfield == 2.0.2 urllib3 >= 1.25 [options.packages.find]