Version bump to 3.0.1
This commit is contained in:
parent
b8e8d27357
commit
01cc9f5199
|
@ -33,5 +33,5 @@ yarn-error.log*
|
|||
#build files
|
||||
/build
|
||||
/*egg-info
|
||||
updatePyPi.sh
|
||||
/updatePyPi.sh
|
||||
/deezer
|
||||
|
|
|
@ -11,7 +11,7 @@ from deemix.itemgen import generateTrackItem, \
|
|||
LinkNotRecognized, \
|
||||
LinkNotSupported
|
||||
|
||||
__version__ = "3.0.0"
|
||||
__version__ = "3.0.1"
|
||||
|
||||
# Returns the Resolved URL, the Type and the ID
|
||||
def parseLink(link):
|
||||
|
|
2
setup.py
2
setup.py
|
@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
|
|||
|
||||
setup(
|
||||
name="deemix",
|
||||
version="3.0.0",
|
||||
version="3.0.1",
|
||||
description="A barebone deezer downloader library",
|
||||
long_description=README,
|
||||
long_description_content_type="text/markdown",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
rm -rd build
|
||||
rm -rd dist
|
||||
#python -m bump
|
||||
#python -m bump deemix/__init__.py
|
||||
python -m bump
|
||||
python -m bump deemix/__init__.py
|
||||
python3 setup.py sdist bdist_wheel
|
||||
python3 -m twine upload dist/*
|
||||
|
|
Loading…
Reference in New Issue