Skip to content

Commit e373de8

Browse files
authored
update CHANGELOG and bump version to 6.16.1 (#1846)
* One more contributing.md fix * update CHANGELOG and bump version to 6.16.1 * Fix CHANGELOG section id
1 parent 43b4535 commit e373de8

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

CHANGELOG.asciidoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ endif::[]
3232
[[release-notes-6.x]]
3333
=== Python Agent version 6.x
3434
35+
[[release-notes-6.16.1]]
36+
==== 6.16.1 - 2023-06-06
37+
38+
[float]
39+
===== Bug fixes
40+
41+
* Fix release process for docker and the lambda layer {pull}1845[#1845]
42+
3543
[[release-notes-6.16.0]]
3644
==== 6.16.0 - 2023-06-05
3745

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ Once your changes are ready to submit for review:
3737

3838
This project uses several tools to maintain a consistent code style:
3939

40-
- the automatic code formatter [black](https://black.readthedocs.io/en/stable/)
41-
- sorting of imports via [isort](https://isort.readthedocs.io/en/latest/)
42-
- [flake8](http://flake8.pycqa.org/en/latest/)
43-
- License header check via custom script
40+
- the automatic code formatter [black](https://black.readthedocs.io/en/stable/)
41+
- sorting of imports via [isort](https://isort.readthedocs.io/en/latest/)
42+
- [flake8](http://flake8.pycqa.org/en/latest/)
43+
- License header check via custom script
4444

4545
The easiest way to make sure your pull request adheres to the code style
4646
is to install [pre-commit](https://pre-commit.com/).
@@ -161,8 +161,8 @@ In this example, we will create an instrumentation for the "foo" database, by in
161161

162162
1. OPTIONAL: If your instrumented package does not support all Python versions we test with, you can exclude certain combinations by adding them to `.ci/matrix_exclude.yml`:
163163

164-
- PYTHON_VERSION: python-3.5 # foo doesn't support Python 3.5
165-
FRAMEWORK: foo-newest
164+
- PYTHON_VERSION: python-3.5 # foo doesn't support Python 3.5
165+
FRAMEWORK: foo-newest
166166

167167
### Workflow
168168

@@ -184,7 +184,7 @@ If you have commit access, the process is as follows:
184184
where `X.Y.Z` is the version in `elasticapm/version.py`
185185
1. Open a PR against `main` with these changes
186186
1. Once the PR is merged, fetch and checkout `upstream/main`
187-
1. Tag the commit with `git tag -a vX.Y.Z`, for example `git tag -a v1.2.3`.
187+
1. Tag the commit with `git tag -s vX.Y.Z`, for example `git tag -s v1.2.3`.
188188
Copy the changelog for the release to the tag message, removing any leading `#`.
189189
1. Reset the current major branch (`1.x`, `2.x` etc) to point to the current main, e.g. `git branch -f 1.x main`
190190
1. Push tag upstream with `git push upstream --tags` (and optionally to your own fork as well)

elasticapm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2929
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3030

31-
__version__ = (6, 16, 0)
31+
__version__ = (6, 16, 1)
3232
VERSION = ".".join(map(str, __version__))

0 commit comments

Comments
 (0)