1
0
mirror of https://github.com/pypiserver/pypiserver synced 2025-02-22 19:19:37 +01:00

Bump v1.2.0(<--1.2.0b0)

+ doc: Reformat changes.
This commit is contained in:
Kostis Anagnostopoulos 2016-06-25 04:32:07 +02:00
parent 6ed641cd95
commit 792d4764f0
3 changed files with 46 additions and 29 deletions

@ -1,41 +1,58 @@
Changelog Changelog
========= =========
1.2.0 (2016-XX-XX) 1.2.0 (2016-06-25)
------------------ ------------------
"New Day": less rigorous support for ``python-2 < 2.7`` and ``python-3 < 3.3``. "New Day": less rigorous support for ``python-2 < 2.7`` and ``python-3 < 3.3``.
- #38, #139, #140: Package normalizations and :pep:`503` updates - Package normalizations and :pep:`503` updates:
(thanks to @dpkp):
- Package names are normalized: convert all characters to lower-case - Package names are normalized: convert all characters to lower-case
and replace any of ``[-_.]`` with a dash(``'-'``). and replace any of ``[-_.]`` with a dash(``'-'``).
- The simple index only lists normalized package names. - The simple index only lists normalized package names.
- Any request for a non-normalized package name is redirected to - Any request for a non-normalized package name is redirected to
the normalized name. the normalized name.
- URLs are redirected unless they end in ``'/'`` (expect packages themselves). - URLs are redirected unless they end in ``'/'`` (expect packages themselves).
- (thanks to @dpkp, #38, #139, #140)
- #80, #114: Added ``pip search`` support (thanks to @blade2005) - Added ``pip search`` support.
- #117, #122, #124/#127/#128: FIX startup regressions introduced by - (thanks to @blade2005, #80, #114)
previous ``v1.1.10`` (thanks to @virtuald, @Oneplus, @michaelkuty, @harcher81,
@8u1a). - FIX startup regressions for other WSGI-servers, introduced by previous ``v1.1.10``.
- #113: FIX over-writing of packages even when without ``--overwrite`` flag - (thanks to @virtuald, @Oneplus, @michaelkuty, @harcher81, @8u1a,
(thanks to @blade2005). #117, #122, #124/#127/#128)
- #107, #108, #110: Test against *python-3.5*.
- #112, #118, #119: Fixes for *paste*, *gunicorn* and other *WSGI* servers - FIX over-writing of packages even when without ``--overwrite`` flag.
(thanks to @corywright, @virtuald, @montefra). - (thanks to @blade2005, #113)
- #120/#121, #129, #141/#142: Updates and fixes needed due to changes
in dependent libraries (thanks @dpkp). - Fixes for *paste*, *gunicorn* and other *WSGI* servers.
- #116: Add cache for speeding up GPG signatures (thanks to @virtuald). - (thanks to @corywright, @virtuald, @montefra, #112, #118, #119)
- Provide sample ``systemd`` *unit-file* (thanks to @ssbarnea).
- Add usage instructions for related project ``pypi-uploader`` - Updates and fixes needed due to changes in dependent libraries.
(thanks to @ssbarnea & @bibby). - (thanks @dpkp, #120/#121, #129, #141/#142)
- #129, #131: Other minor fixes and improvements (thanks to @bibby, @Oneplus,
@8u1a). - Add cache for speeding up GPG signatures.
- #149, #151-#153: Provide sample-code to authenticate using ``/etc/passwds`` file via *pam* - sthanks to @virtuald, #116)
modules in Unix (thanks to @blade2005).
- Improved API usage instructions. - Other minor fixes and improvements.
- Detailed changes recorded in `Github's milestone 1.2.0 - (thanks to @bibby, @Oneplus, @8u1a, #129, #131)
<https://github.com/pypiserver/pypiserver/milestones/M1.2.0>`_.
- TravisCI-test against *python-3.5*.
- (#107, #108, #110)
- docs:
- Provide samples for *Automated Startup* (``systemd`` & ``hypervisor``).
(thanks to @ssbarnea, #137, #146)
- Add usage instructions for related project ``pypi-uploader``.
(thanks to @ssbarnea & @bibby, #147)
- doc: Provide sample-code to authenticate using ``/etc/passwds`` file
via *pam* modules in Unix.
- (thanks to @blade2005, #149, #151-#153)
- Improved API usage instructions.
- Detailed changes recorded in `Github's milestone 1.2.0
<https://github.com/pypiserver/pypiserver/milestones/M1.2.0>`_.
1.1.10 (2016-01-19) 1.1.10 (2016-01-19)

@ -10,8 +10,8 @@ pypiserver - minimal PyPI server for use with pip/easy_install
|pypi-ver| |travis-status| |dependencies| |downloads-count| |python-ver| \ |pypi-ver| |travis-status| |dependencies| |downloads-count| |python-ver| \
|proj-license| |proj-license|
:Version: 1.2.0b2 :Version: 1.2.0
:Date: 2016-06-24 :Date: 2016-06-25
:Source: https://github.com/pypiserver/pypiserver :Source: https://github.com/pypiserver/pypiserver
:PyPI: https://pypi.python.org/pypi/pypiserver :PyPI: https://pypi.python.org/pypi/pypiserver
:Travis: https://travis-ci.org/pypiserver/pypiserver :Travis: https://travis-ci.org/pypiserver/pypiserver

@ -1,8 +1,8 @@
import re as _re import re as _re
version = __version__ = "1.2.0b2" version = __version__ = "1.2.0"
__version_info__ = tuple(_re.split('[.-]', __version__)) __version_info__ = tuple(_re.split('[.-]', __version__))
__updated__ = "2016-06-24" __updated__ = "2016-06-25"
__title__ = "pypiserver" __title__ = "pypiserver"
__summary__ = "A minimal PyPI server for use with pip/easy_install." __summary__ = "A minimal PyPI server for use with pip/easy_install."