Merge lp:~pedronis/uservice-logging/rel-0.10.1 into lp:uservice-logging

Proposed by Samuele Pedroni
Status: Merged
Approved by: Samuele Pedroni
Approved revision: 22
Merged at revision: 22
Proposed branch: lp:~pedronis/uservice-logging/rel-0.10.1
Merge into: lp:uservice-logging
Diff against target: 58 lines (+15/-9)
3 files modified
CHANGELOG (+7/-1)
release_HOWTO.rst (+7/-7)
uservice_logging/__init__.py (+1/-1)
To merge this branch: bzr merge lp:~pedronis/uservice-logging/rel-0.10.1
Reviewer Review Type Date Requested Status
Facundo Batista (community) Approve
Review via email: mp+268750@code.launchpad.net

Commit message

release 0.10.1, update CHANGELOG, improve release_HOWTO.rst
Add a review or comment

Description of the change

release 0.10.1, update CHANGELOG, improve release_HOWTO.rst

To post a comment you must log in.
Revision history for this message
Facundo Batista (facundo) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'CHANGELOG'
--- CHANGELOG 2015-08-03 15:15:05 +0000
+++ CHANGELOG 2015-08-21 13:37:06 +0000
@@ -1,8 +1,14 @@
1Release History:1Release History:
2################2################
33
40.10.1
5======
6
7* monkeypatch the use of a safe JSONEncoder for formatting messages
8 for logstash so not to lose logs by crashing
9
40.10.0100.10.0
5=====11======
612
7* replace set_extra_args with thread-safe add_extra_args, with extra13* replace set_extra_args with thread-safe add_extra_args, with extra
8 args per thread and additive over the thread lifetime, support a14 args per thread and additive over the thread lifetime, support a
915
=== modified file 'release_HOWTO.rst'
--- release_HOWTO.rst 2015-07-31 14:52:16 +0000
+++ release_HOWTO.rst 2015-08-21 13:37:06 +0000
@@ -1,15 +1,15 @@
1How To Release1How To Release
2##############2##############
33
4.. xxx merge with README?
5
61. Change the `__version__` tuple in `uservice_logging/__init__.py` so the 4th element is 'final', rather than 'dev'.41. Change the `__version__` tuple in `uservice_logging/__init__.py` so the 4th element is 'final', rather than 'dev'.
72. Change the 'NEXT' CHANGELOG entry to reflect the 3-number version you're about to release (like 1.0.2)52. Change the 'NEXT' CHANGELOG entry to reflect the 3-number version you're about to release (like 1.0.2)
83. `pip install wheel twine`63. Commit
94. Build a wheel: python setup.py bdist_wheel74. bzr tag the release (like bzr tag 1.0.2)
105. Upload to pypi (currently you need to be Thomi or Joe to do this): twine upload dist/*85. `pip install wheel twine`
116. Open the new development series:96. Build a wheel: python setup.py bdist_wheel
107. Upload to pypi (you need one of the project owners there): twine upload dist/*
118. Open the new development series:
12 a. Increment the minor release version in `uservice_logging/__init__`12 a. Increment the minor release version in `uservice_logging/__init__`
13 b. Set the release phase to 'dev'13 b. Set the release phase to 'dev'
14 c. Create a new entry in CHANGELOG called 'NEXT'14 c. Create a new entry in CHANGELOG called 'NEXT'
157. Commit; create MP; merge to trunk;159. Commit; create MP; merge to trunk;
1616
=== modified file 'uservice_logging/__init__.py'
--- uservice_logging/__init__.py 2015-08-03 15:33:04 +0000
+++ uservice_logging/__init__.py 2015-08-21 13:37:06 +0000
@@ -29,6 +29,6 @@
29# If the releaselevel is 'final', then the tarball will be major.minor.micro.29# If the releaselevel is 'final', then the tarball will be major.minor.micro.
30# Otherwise it is major.minor.micro~$(revno).30# Otherwise it is major.minor.micro~$(revno).
3131
32__version__ = (0, 10, 0, 'final')32__version__ = (0, 10, 1, 'final')
3333
34from .logging import configure_logging # noqa34from .logging import configure_logging # noqa

Subscribers

People subscribed via source and target branches

to all changes: