chore(ver): bump 1.2.5-->1.2.6

This commit is contained in:
Matthew Planchard 2019-01-26 15:57:50 -06:00
parent 0284cb7f50
commit e6a8bc556c
No known key found for this signature in database
GPG Key ID: 4ABC11DF33394F00
3 changed files with 10 additions and 4 deletions

View File

@ -1,6 +1,12 @@
Changelog
=========
1.2.6 (2019-01-26)
------------------
- SEC: mitigate potential CRLF injection attacks from malicious URLs
(thanks @samwcyo, #237)
1.2.5 (2018-11-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.2.5
:Date: 2018-11-11
:Version: 1.2.6
:Date: 2019-01-26
: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.2.5"
version = __version__ = "1.2.6"
__version_info__ = tuple(_re.split('[.-]', __version__))
__updated__ = "2018-11-09 19:25:39"
__updated__ = "2019-01-26 15:57:50"
__title__ = "pypiserver"
__summary__ = "A minimal PyPI server for use with pip/easy_install."