Skip to content

Commit 3f44c9c

Browse files
committed
update CHANGELOG and bump version to 3.0.1
1 parent b206c78 commit 3f44c9c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changelog
22

3-
## Next release
3+
## v3.0.1
44

5-
[Check the diff](https://github.com/elastic/apm-agent-python/compare/v3.0.0...master)
5+
[Check the diff](https://github.com/elastic/apm-agent-python/compare/v3.0.0...v3.0.1)
66

77
* added sanitization for `Set-Cookie` response headers (#264)
88
* added instrumentation for the non-standard `Connection.execute()` method for SQLite3 (#271)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ should "Squash and merge".
9696
If you have commit access, the process is as follows:
9797

9898
1. Update the version in `elasticapm/version.py` according to the scale of the change. (major, minor or patch)
99-
1. Update `CHANGELOG.asciidoc`
99+
1. Update `CHANGELOG.md`
100100
1. Commit changes with message `update CHANGELOG and bump version to x.y.z` where `x.y.z` is the version in `elasticapm/version.py`
101101
1. Tag the commit with `git tag vx.y.x`, for example `git tag v1.2.3`
102102
1. Reset the current major branch (`1.x`, `2.x` etc) to point to the current master, e.g. `git branch -f 1.x master`

elasticapm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = (3, 0, 0)
1+
__version__ = (3, 0, 1)
22
VERSION = ".".join(map(str, __version__))

0 commit comments

Comments
 (0)