diff --git a/CHANGELOG.md b/CHANGELOG.md index 1602224..18b100a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). The format is based on [Keep a Changelog](http://keepachangelog.com/). +## 0.0.13 - 2019-05-18 + - Fix #19 + ## 0.0.12 - 2019-02-26 - Fix #16 diff --git a/README.md b/README.md index 37cad68..7d29173 100644 --- a/README.md +++ b/README.md @@ -329,23 +329,18 @@ repository: https://test.pypi.org/legacy/ username= password= ``` +build +```bash +python setup.py bdist_wheel --universal +``` + pypitest ``` -python setup.py bdist_wheel twine upload --repository-url https://test.pypi.org/legacy/ dist/* -python -m pip install --index-url https://test.pypi.org/simple/ json_logging - -python setup.py sdist upload -r pypitest -python setup.py bdist_wheel --universal upload -r pypitest pip3 install json_logging --index-url https://test.pypi.org/simple/ ``` pypi ``` twine upload --repository-url https://upload.pypi.org/legacy/ dist/* - - -python setup.py sdist upload -r pypi -python3 setup.py bdist_wheel --universal upload -r pypi pip3 install json_logging -``` -bdist_wheel --universal +``` \ No newline at end of file diff --git a/setup.py b/setup.py index 7228ee1..9b31498 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="json-logging", - version='0.0.12', + version='0.0.13', packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'example', 'dist', 'build']), license='Apache License 2.0', description="JSON Python Logging",