-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(versioning): increment from 1.3.0 to 1.3.0.post0
Increment from 1.3.0 to 1.3.0.post0 in order to upload to upload to pypi a universal wheel (python 2 and 3)
- Loading branch information
Konstantinos
committed
Nov 1, 2019
1 parent
7ebd98a
commit 50f365e
Showing
4 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
Changelog | ||
========= | ||
|
||
1.3.0.post0 (2019-11-01) | ||
------------------- | ||
|
||
|
||
1.3.0 (2019-11-01) | ||
------------------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,10 @@ def readme(): | |
|
||
setup( | ||
name='music_album_creation', | ||
version='1.3.0', | ||
version='1.3.0.post0', | ||
description='A CLI application intending to automate offline music library building.', | ||
long_description=readme(), | ||
long_description_content_type='text/x-rst', | ||
keywords='music automation download youtube metadata', | ||
|
||
project_urls={ | ||
|
@@ -60,7 +61,7 @@ def readme(): | |
'Topic :: Multimedia :: Sound/Audio', | ||
], | ||
url='https://github.com/boromir674/music-album-creator', | ||
download_url='https://github.com/boromir674/music-album-creator/archive/v1.3.0.tar.gz', # help easy_install do its tricks | ||
download_url='https://github.com/boromir674/music-album-creator/archive/v1.3.0.post0.tar.gz', # help easy_install do its tricks | ||
author='Konstantinos Lampridis', | ||
author_email='[email protected]', | ||
license='GNU GPLv3', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '1.3.0' | ||
__version__ = '1.3.0.post0' | ||
|
||
import logging.config | ||
from os import path | ||
|