Bump ver 1.1.8-b1-->1.1.8

+ Update CHANGES.
This commit is contained in:
ankostis on tokoti 2015-09-15 21:06:24 +02:00
parent dc8f62c04f
commit ea4cfe1b89
3 changed files with 16 additions and 5 deletions

View File

@ -1,6 +1,17 @@
Changelog Changelog
========= =========
1.1.8 (2015-09-15)
------------------
"Finikounda" release.
- Allow un-authenticated uploads (no htpasswd file) (#55).
- Fixes on package-name handling (#85 and #88, #89).
- Respect logging cmd-line options (#81).
- Add TCs for standalone script and other build-issues (#92)
- See milestone:M1.1.8 on github for all fixes included.
1.1.7 (2015-03-8) 1.1.7 (2015-03-8)
------------------ ------------------
1st release under cooperative ownership: 1st release under cooperative ownership:
@ -13,11 +24,11 @@ Changelog
- #56, #70: Ignore non-packages when serving. - #56, #70: Ignore non-packages when serving.
- #58, #62: Log all http-requests. - #58, #62: Log all http-requests.
- #61: Possible to change welcome-msg. - #61: Possible to change welcome-msg.
- #77, #78: Avoid XSS by generating web-content with SimpleTemplate - #77, #78: Avoid XSS by generating web-content with SimpleTemplate
instead of python's string-substs. instead of python's string-substs.
- #38, #79: Instruct to use --extra-index-url for misspelled dependencies to work, - #38, #79: Instruct to use --extra-index-url for misspelled dependencies to work,
reorganize README instructions. reorganize README instructions.
1.1.6 (2014-03-05) 1.1.6 (2014-03-05)
------------------ ------------------

View File

@ -8,7 +8,7 @@ pypiserver - minimal PyPI server for use with pip/easy_install
:Authors: Ralf Schmitt <ralf@systemexit.de>, :Authors: Ralf Schmitt <ralf@systemexit.de>,
Kostis Anagnostopoulos <ankostis@gmail.com> Kostis Anagnostopoulos <ankostis@gmail.com>
:Version: 1.1.8-beta.1 :Version: 1.1.8
:Date: 2015-03-8 :Date: 2015-03-8
:Source: https://github.com/pypiserver/pypiserver :Source: https://github.com/pypiserver/pypiserver
:PyPI repo: https://pypi.python.org/pypi/pypiserver#downloads :PyPI repo: https://pypi.python.org/pypi/pypiserver#downloads

View File

@ -1,5 +1,5 @@
import re as _re import re as _re
version = __version__ = "1.1.8-beta.1" version = __version__ = "1.1.8"
__version_info__ = tuple(_re.split('[.-]', __version__)) __version_info__ = tuple(_re.split('[.-]', __version__))