Skip to content

Commit

Permalink
update CHANGELOG and bump version to 5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
basepi committed Oct 2, 2019
1 parent 7337ab1 commit 514109f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog

## Unreleased
[Check the diff](https://github.com/elastic/apm-agent-python/compare/v5.1.2...master)
## v5.2.0
[Check the diff](https://github.com/elastic/apm-agent-python/compare/v5.1.2...v5.2.0)

### New Features
* added automatic tagging of LogRecord objects with transaction, trace, and span IDs via a LogRecordFactory (Python 3.2+) (#520, #586)
Expand All @@ -11,6 +11,7 @@
* added support for chained exceptions in Python 3 (#596).
Note that chained exceptions will be captured and stored in Elasticsearch, but not yet
visualized in the APM UI. The UI component will be released in an upcoming Kibana release (7.5 or later).
* added support for using `structlog` for agent logging (#591)

### Bugfixes
* drop events immediately if a processor returns a falsy value (#585)
Expand Down
2 changes: 1 addition & 1 deletion elasticapm/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

__version__ = (5, 1, 2)
__version__ = (5, 2, 0)
VERSION = ".".join(map(str, __version__))

0 comments on commit 514109f

Please sign in to comment.