chore(ver): bump 1.3.1-->1.3.2

This commit is contained in:
Matthew Planchard 2020-01-11 17:23:07 -06:00
parent 124a2a9c43
commit 9a309883be
No known key found for this signature in database
GPG Key ID: 4ABC11DF33394F00
3 changed files with 18 additions and 8 deletions

View File

@ -1,15 +1,25 @@
Changelog
=========
1.3.2 (tbd)
-----------
1.3.2 (2020-01-11)
------------------
- ENH: The Dockerfile used for the official Docker images now uses Python 3.6
rather than Python 2.7 (#284, thanks @etene!)
- ENH: The `welcome.html` page has been updated to provide more metadata
and be more HTML-standards compliant (#283, thanks @maggyero!)
- FIX: The `remove_pkg` API action now removes any extant instances of a
package name-version combination, not just the first one found. This means
that now, for example, if a `.whl` and `.tar.gz` file exist for the
requested package name and version, both will be removed (thanks to
@esciara for reporting in #268)
- DEV: switched to gitlab for CI
- FIX: include missing `simple/` path on a URL in the example pip commands
on the `welcome.html` page (@276, thanks @maggyero!)
- DOC: more consistent and accurate documentation for pip commands provided
on the `welcome.html` page (#278, thanks @maggyero!)
- DOC: fixes to the README to make it easier for people to use pypiserver
behind an apache webserver (#289, thanks @Helveg!)
1.3.1 (2019-09-10)
------------------

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.1
:Date: 2019-09-10
:Version: 1.3.2
:Date: 2020-01-11
:Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.org/project/pypiserver/
:Travis: https://travis-ci.org/pypiserver/pypiserver
@ -647,7 +647,7 @@ explained in `bottle's documentation <http://bottlepy.org/docs/dev/deployment.ht
.. Note::
For security reasons, notice that the ``Directory`` directive grants access
to a directory holding the ``wsgi`` start-up script, alone; nothing else.
.. Note::
To enable HTTPS support on Apache, configure the directive that contains the
WSGI configuration to use SSL.

View File

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