Skip to content

Commit 724586b

Browse files
committed
release 0.0.8
1 parent 1460d4a commit 724586b

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
77
## [Unreleased]
88
- Introduced sap namespace
99

10+
## 0.0.2 - 2017-12-24
1011

11-
## 1.0.0 - 2017-12-24
12+
### Changed
13+
- fixed https://github.com/thangbn/json-logging-python/pull/2
14+
15+
## 0.0.1 - 2017-12-24
1216

1317
### Changed
1418
- Initial release

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,8 @@ https://docs.python.org/2/library/logging.html#logging.Logger.propagate
276276
http://flask.pocoo.org/docs/0.12/errorhandling/#working-with-debuggers
277277

278278
# Development
279+
create file **.pypirc**
280+
279281
```
280282
[distutils]
281283
index-servers =
@@ -294,12 +296,20 @@ password=
294296
```
295297
pypitest
296298
```
299+
python setup.py bdist_wheel
300+
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
301+
python -m pip install --index-url https://test.pypi.org/simple/ json_logging
302+
303+
297304
python setup.py sdist upload -r pypitest
298305
python setup.py bdist_wheel --universal upload -r pypitest
299306
pip3 install json_logging --index-url https://test.pypi.org/simple/
300307
```
301308
pypi
302309
```
310+
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
311+
312+
303313
python setup.py sdist upload -r pypi
304314
python3 setup.py bdist_wheel --universal upload -r pypi
305315
pip3 install json_logging

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.7',
15+
version='0.0.8',
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)