From 42d6ee7d9b12b30edb9a50733937c1572ceeb4e9 Mon Sep 17 00:00:00 2001 From: Cooper Ry Lees Date: Sun, 25 Nov 2018 20:52:08 -0800 Subject: [PATCH] Move version to 3.1.1 + Update CHANGES.md --- CHANGES.md | 13 +++++++++---- src/bandersnatch/__init__.py | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 45cfa2163..9911da091 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +## 3.1.1 (2018-11-25) + +- Add missing `filelock` dependency to `setup.py` `Fixes #93` + +### Known Bugs + +- `verify` prints `could't find .netrc file` which requires > aiohttp 3.4.4 release. Waited long enough - https://github.com/aio-libs/aiohttp/issues/3298 + + ## 3.1.0 (2018-11-25) - Store N versions of index.html - `Fixes #9` - Thanks **@yeraydiazdiaz** @@ -6,10 +15,6 @@ - Revert pinning versions in `setup.py` - `Fixes #81` - Add Pre-release + regex filter plguins `Fixes #83` - Thanks **@yeraydiazdiaz** -### Known Bugs - -- `verify` prints `could't find .netrc file` which requires > aiohttp 3.4.4 release. Waited long enough - https://github.com/aio-libs/aiohttp/issues/3298 - ## 3.0.1 (2018-10-30) - Fix setup.py *url* to point at GitHub (https://github.com/pypa/bandersnatch) diff --git a/src/bandersnatch/__init__.py b/src/bandersnatch/__init__.py index 380718d65..de1524ee2 100644 --- a/src/bandersnatch/__init__.py +++ b/src/bandersnatch/__init__.py @@ -18,7 +18,7 @@ def version_str(self) -> str: __version_info__ = _VersionInfo( major=3, minor=1, - micro=0, + micro=1, releaselevel="", serial=0, # Not currently in use with Bandersnatch versioning )