Skip to content

Commit

Permalink
Move version to 3.6.0 + Update README.md & CHANGES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperlees committed Sep 24, 2019
1 parent 9f7983a commit d727889
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.6.0 (2019-09-24)

- Add `delete` subcommand to delete specific PyPI Packages from mirror - `PR #324`

# 3.5.0 (2019-09-14)

- Add support for differential file generation - Thanks **@artagel** - `PR #313`
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ For nginx it should look something like this:
```
server {
listen 127.0.0.1:80;
listen [::1]:80;
server_name <mymirrorname>;
root <path-to-mirror>/web;
autoindex on;
Expand Down Expand Up @@ -97,6 +98,11 @@ If you want to force bandersnatch to check everything against the master PyPI:

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

#### Other Commands

* `bandersnatch delete --help` - Allows you to specify package(s) to be removed from your mirror (*dangerous*)
* `bandersnatch verify --help` - Crawls your repo and fixes any missed files + deletes any unowned files found (*dangerous*)

### Operational notes

#### Case-sensitive filesystem needed
Expand Down
8 changes: 1 addition & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ project_urls =
Source Code = https://github.com/pypa/bandersnatch
Change Log = https://github.com/pypa/bandersnatch/CHANGES.md
url = https://github.com/pypa/bandersnatch/
version = 3.6.0.dev0
version = 3.6.0

[options]
include_package_data = True
Expand Down Expand Up @@ -72,9 +72,3 @@ doc_build =
recommonmark
# git+https://github.com/pypa/pypa-docs-theme.git#egg=pypa-docs-theme
# git+https://github.com/python/python-docs-theme.git#egg=python-docs-theme

[pycodestyle]
count = False
# ignore = E226,E302,E41
max-line-length = 88
statistics = True
2 changes: 1 addition & 1 deletion src/bandersnatch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def version_str(self) -> str:
major=3,
minor=6,
micro=0,
releaselevel="dev0",
releaselevel="",
serial=0, # Not currently in use with Bandersnatch versioning
)
__version__ = __version_info__.version_str

0 comments on commit d727889

Please sign in to comment.