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