Skip to content

Commit eb94cb2

Browse files
authored
Update changes and move to 3.1.0 for release (#92)
1 parent 8493a99 commit eb94cb2

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

CHANGES.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 3.1.0 (2018-11-25)
2+
3+
- Store N versions of index.html - `Fixes #9` - Thanks **@yeraydiazdiaz**
4+
- Add CI Integration test - `Fixes #78` - Thanks **@cooperlees**
5+
- Test / pin to latest dependencies via PyUP - `Fixes #70` - Thanks **@cooperlees**
6+
- Revert pinning versions in `setup.py` - `Fixes #81`
7+
- Add Pre-release + regex filter plguins `Fixes #83` - Thanks **@yeraydiazdiaz**
8+
9+
### Known Bugs
10+
11+
- `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
12+
113
## 3.0.1 (2018-10-30)
214

315
- Fix setup.py *url* to point at GitHub (https://github.com/pypa/bandersnatch)
@@ -22,9 +34,7 @@
2234
## 2.2.0 (2018-03-28)
2335

2436
- Allow digest_name to be specified. `Fixes #105` - Thanks **@ewdurbin** !
25-
2637
- synchronize generated index pages with warehouse - Thanks **@ewdurbin** !
27-
2838
- Allow root_uri to be configured - Thanks **@ewdurbin** !
2939
-- This is how warehouse (pypi.org) will function
3040

@@ -33,7 +43,6 @@
3343

3444
- Change version from using pkg_resources and set it in package __init__.py.
3545
`Fixes #98`.
36-
3746
- Add ability to blacklist packages to sync via conf file. `Fixes #100`.
3847

3948

@@ -49,12 +58,9 @@
4958
- Fix proxy usage. A bug in the usage of requests on our XMLRPC client
5059
caused this to break. You can now set `*_proxy` environment variables
5160
and get them picked up properly. `Fixes #59`.
52-
5361
- Add a dict returned from mirror.synchronize() to show deleted
5462
and added files from the last run
55-
5663
- Fix sorting of releases to use filename and not url
57-
5864
- Tweak atomic file writes in utils.rewrite() to prefix the temporary
5965
file with the 'hidden' filename of the destination adding more
6066
support for hashed POSIX filesystems like GlusterFS. - Thanks **@cooperlees**

src/bandersnatch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def version_str(self) -> str:
1919
major=3,
2020
minor=1,
2121
micro=0,
22-
releaselevel="dev1",
22+
releaselevel="",
2323
serial=0, # Not currently in use with Bandersnatch versioning
2424
)
2525
__version__ = __version_info__.version_str

0 commit comments

Comments
 (0)