Skip to content

Commit

Permalink
Bump version 1.49
Browse files Browse the repository at this point in the history
  • Loading branch information
catlinman committed Dec 4, 2020
1 parent 1f86ead commit 863fea6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion campdown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

def cli():
# Acts as the CLI for the project and main entry point for the command.
args = docopt(__doc__, version="campdown 1.48")
args = docopt(__doc__, version="campdown 1.49")

try:
output_dir = args["--output"]
Expand Down
4 changes: 2 additions & 2 deletions campdown/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def safe_get(url):
headers = requests.utils.default_headers()

headers.update = {
"User-Agent": "campdown/1.48 (+https://github.com/catlinman/campdown)",
"User-Agent": "campdown/1.49 (+https://github.com/catlinman/campdown)",
"Accept-Encoding": ", ".join(("gzip", "deflate")),
"Accept": "*/*",
"Connection": "keep-alive",
Expand Down Expand Up @@ -297,7 +297,7 @@ def download_file(url, output, name, force=False, verbose=False, silent=False, s
headers = requests.utils.default_headers()

headers.update = {
"User-Agent": "campdown/1.48 (+https://github.com/catlinman/campdown)",
"User-Agent": "campdown/1.49 (+https://github.com/catlinman/campdown)",
"Accept-Encoding": ", ".join(("gzip", "deflate")),
"Accept": "*/*",
"Connection": "keep-alive",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="campdown",
version="1.48",
version="1.49",
author="Catlinman",
author_email="contact@catlinman.com",
description=("Bandcamp track and album downloader"),
Expand Down

0 comments on commit 863fea6

Please sign in to comment.