chore(ver): bump 1.3.2-->1.4.0

This commit is contained in:
Matthew Planchard 2020-10-03 17:45:07 -05:00
parent 12ae6c118a
commit b208103951
No known key found for this signature in database
GPG Key ID: AF5C892A5573ABED
3 changed files with 23 additions and 11 deletions

View File

@ -1,14 +1,26 @@
Changelog
=========
x.x.x (tbd)
-----------
1.4.0 (2020-10-03)
------------------
- ENH: Add official support and testing for Python 3.8
- MAINT: Update bottle to [0.12.18](https://github.com/bottlepy/bottle/releases/tag/0.12.18)
for Python 3.8 compatibility
- MAINT: bump version of passlib from 1.7.1 to 1.7.2 in Docker requirements
- MAINT: drop official support for Python 3.4
- DOC: Add docker-compose example with HTTPS configuration using Traefix (#295, thanks @Lauszus!)
- DOC: Add link to zulip chat to README (aa2d78c)
- DOC: Documentation for running as a service in windows (#316, thanks @kodaman2!)
- DOC: Fix typo in README HTML (#303, thanks @Gerardwx!)
- DOC: Moved flask-pypi-proxy and pip2pi to a new "Unmaintained or archived" section (#326, thanks @Luttik!)
- DOC: Slightly clarify the relationship to warehouse. (#308, thanks @Julian!)
- ENH: Add ignore list for the update command (#298, thanks @peter-slovak!)
- ENH: Add official support and testing for Python 3.8 (#292) for Python 3.8 compatibility
- ENH: Allow configuration of logging stream (#334, thanks @elfjes)
- ENH: Include watchdog to enable caching in docker image (#323, thanks @johnchildren!)
- FIX: Cherrypy import for newer versions of cherrypy in vendored bottle.py (#301, thanks @TiemenSch!)
- FIX: Improved permissions management in Dockerfile (#330, thanks @normoes)
- FIX: Usage of string formatting in HTTPError (#310, thanks @micahjsmith!)
- MAINT: Update bottle to [0.12.18](https://github.com/bottlepy/bottle/releases/tag/0.12.18) (#290)
- MAINT: Use Python 3.8 in Dockerfile (#330, thanks @normoes)
- MAINT: bump version of passlib from 1.7.1 to 1.7.2 in Docker requirements (#293)
- MAINT: drop official support for Python 3.4 (#321)
1.3.2 (2020-01-11)
------------------

View File

@ -9,8 +9,8 @@ pypiserver - minimal PyPI server for use with pip/easy_install
==============================================================================
|pypi-ver| |travis-status| |dependencies| |python-ver| |proj-license|
:Version: 1.3.2
:Date: 2020-01-11
:Version: 1.4.0
:Date: 2020-10-03
:Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.org/project/pypiserver/
:Travis: https://travis-ci.org/pypiserver/pypiserver

View File

@ -2,9 +2,9 @@ import os
import re as _re
import sys
version = __version__ = "1.3.2"
version = __version__ = "1.4.0"
__version_info__ = tuple(_re.split('[.-]', __version__))
__updated__ = "2020-01-11 17:25:20"
__updated__ = "2020-10-03 17:45:07"
__title__ = "pypiserver"
__summary__ = "A minimal PyPI server for use with pip/easy_install."