From 7d8e1d5af6d2b1cd817cf1c2db3ef58f868870ef Mon Sep 17 00:00:00 2001 From: Mitchell Henke Date: Mon, 2 Jul 2018 10:35:23 -0500 Subject: [PATCH] prepare for release --- CHANGELOG.md | 16 +++++++++++++++- README.md | 2 +- docs/index.rst | 2 +- mix.exs | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4415311e..b3f3db55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,22 @@ ## master +## 6.4.0 (2018-07-02) -## 6.3.0 (2018-04-24) +* Enhancements + * Add documentation detail around including source code (#287) + * Document fingerprinting (#288) + * Document `Sentry.Context` (#289) + * Add CONTRIBUTING.md (#290) + * Document cookie scrubber (#291) + * Document testing with Sentry (#292) + +* Bug Fixes + * Change `report_deps` default value to false to avoid compiler bug (#285) + * Limit size of messages (#293) + * Use `elixir_uuid` instead of `uuid` (#295) + +## 6.3.0 (2018-06-26) * Enhancements * Use the stacktrace passed to Sentry.Event.transform_exception/2 when calling Exception.normalize/3 (#266) diff --git a/README.md b/README.md index bcfe8eb9..0866d103 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ defp application do end defp deps do - [{:sentry, "~> 6.3"}] + [{:sentry, "~> 6.4"}] end ``` diff --git a/docs/index.rst b/docs/index.rst index 85285a2b..15152351 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -24,7 +24,7 @@ Edit your mix.exs file to add it as a dependency and add the ``:sentry`` package end defp deps do - [{:sentry, "~> 6.3"}] + [{:sentry, "~> 6.4"}] end Configuration diff --git a/mix.exs b/mix.exs index a1d578a8..69c0ec95 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Sentry.Mixfile do def project do [ app: :sentry, - version: "6.3.0", + version: "6.4.0", elixir: "~> 1.3", description: "The Official Elixir client for Sentry", package: package(),