Skip to content

Commit d2fec10

Browse files
committed
release 0.0.13
1 parent 41f4f5d commit d2fec10

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55
The format is based on [Keep a Changelog](http://keepachangelog.com/).
66

7+
## 0.0.13 - 2019-05-18
8+
- Fix #19
9+
710
## 0.0.12 - 2019-02-26
811
- Fix #16
912

README.md

+6-11
Original file line numberDiff line numberDiff line change
@@ -329,23 +329,18 @@ repository: https://test.pypi.org/legacy/
329329
username=
330330
password=
331331
```
332+
build
333+
```bash
334+
python setup.py bdist_wheel --universal
335+
```
336+
332337
pypitest
333338
```
334-
python setup.py bdist_wheel
335339
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
336-
python -m pip install --index-url https://test.pypi.org/simple/ json_logging
337-
338-
python setup.py sdist upload -r pypitest
339-
python setup.py bdist_wheel --universal upload -r pypitest
340340
pip3 install json_logging --index-url https://test.pypi.org/simple/
341341
```
342342
pypi
343343
```
344344
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
345-
346-
347-
python setup.py sdist upload -r pypi
348-
python3 setup.py bdist_wheel --universal upload -r pypi
349345
pip3 install json_logging
350-
```
351-
bdist_wheel --universal
346+
```

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="json-logging",
15-
version='0.0.12',
15+
version='0.0.13',
1616
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'example', 'dist', 'build']),
1717
license='Apache License 2.0',
1818
description="JSON Python Logging",

0 commit comments

Comments
 (0)