forked from github.com/pypiserver
chore(ver): bump 1.3.1-->1.3.2
This commit is contained in:
parent
124a2a9c43
commit
9a309883be
16
CHANGES.rst
16
CHANGES.rst
@ -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)
|
||||
------------------
|
||||
|
@ -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
|
||||
|
@ -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."
|
||||
|
Loading…
Reference in New Issue
Block a user