Skip to content

Commit d727889

Browse files
committed
Move version to 3.6.0 + Update README.md & CHANGES.md
1 parent 9f7983a commit d727889

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 3.6.0 (2019-09-24)
2+
3+
- Add `delete` subcommand to delete specific PyPI Packages from mirror - `PR #324`
4+
15
# 3.5.0 (2019-09-14)
26

37
- Add support for differential file generation - Thanks **@artagel** - `PR #313`

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ For nginx it should look something like this:
5555
```
5656
server {
5757
listen 127.0.0.1:80;
58+
listen [::1]:80;
5859
server_name <mymirrorname>;
5960
root <path-to-mirror>/web;
6061
autoindex on;
@@ -97,6 +98,11 @@ If you want to force bandersnatch to check everything against the master PyPI:
9798

9899
Be aware that full syncs likely take hours depending on PyPI's performance and your network latency and bandwidth.
99100

101+
#### Other Commands
102+
103+
* `bandersnatch delete --help` - Allows you to specify package(s) to be removed from your mirror (*dangerous*)
104+
* `bandersnatch verify --help` - Crawls your repo and fixes any missed files + deletes any unowned files found (*dangerous*)
105+
100106
### Operational notes
101107

102108
#### Case-sensitive filesystem needed

setup.cfg

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ project_urls =
1515
Source Code = https://github.com/pypa/bandersnatch
1616
Change Log = https://github.com/pypa/bandersnatch/CHANGES.md
1717
url = https://github.com/pypa/bandersnatch/
18-
version = 3.6.0.dev0
18+
version = 3.6.0
1919

2020
[options]
2121
include_package_data = True
@@ -72,9 +72,3 @@ doc_build =
7272
recommonmark
7373
# git+https://github.com/pypa/pypa-docs-theme.git#egg=pypa-docs-theme
7474
# git+https://github.com/python/python-docs-theme.git#egg=python-docs-theme
75-
76-
[pycodestyle]
77-
count = False
78-
# ignore = E226,E302,E41
79-
max-line-length = 88
80-
statistics = True

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=6,
2121
micro=0,
22-
releaselevel="dev0",
22+
releaselevel="",
2323
serial=0, # Not currently in use with Bandersnatch versioning
2424
)
2525
__version__ = __version_info__.version_str

0 commit comments

Comments
 (0)