Skip to content

Commit

Permalink
release 0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
bobevenup committed May 18, 2019
1 parent 41f4f5d commit d2fec10
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
17 changes: 6 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d2fec10

Please sign in to comment.