From e6a8bc556cf01babcabd656885c2f037b94396d8 Mon Sep 17 00:00:00 2001 From: Matthew Planchard Date: Sat, 26 Jan 2019 15:57:50 -0600 Subject: [PATCH] chore(ver): bump 1.2.5-->1.2.6 --- CHANGES.rst | 6 ++++++ README.rst | 4 ++-- pypiserver/__init__.py | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9bc87b3..760c71a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) ------------------ diff --git a/README.rst b/README.rst index cb40283..897d5bd 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/pypiserver/__init__.py b/pypiserver/__init__.py index de668af..18fd851 100644 --- a/pypiserver/__init__.py +++ b/pypiserver/__init__.py @@ -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."