File tree Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 22
33## master
44
5+ ## 6.4.0 (2018-07-02)
56
6- ## 6.3.0 (2018-04-24)
7+ * Enhancements
8+ * Add documentation detail around including source code (#287 )
9+ * Document fingerprinting (#288 )
10+ * Document ` Sentry.Context ` (#289 )
11+ * Add CONTRIBUTING.md (#290 )
12+ * Document cookie scrubber (#291 )
13+ * Document testing with Sentry (#292 )
14+
15+ * Bug Fixes
16+ * Change ` report_deps ` default value to false to avoid compiler bug (#285 )
17+ * Limit size of messages (#293 )
18+ * Use ` elixir_uuid ` instead of ` uuid ` (#295 )
19+
20+ ## 6.3.0 (2018-06-26)
721
822* Enhancements
923 * Use the stacktrace passed to Sentry.Event.transform_exception/2 when calling Exception.normalize/3 (#266 )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ defp application do
1717end
1818
1919defp deps do
20- [{:sentry , " ~> 6.3 " }]
20+ [{:sentry , " ~> 6.4 " }]
2121end
2222```
2323
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Edit your mix.exs file to add it as a dependency and add the ``:sentry`` package
2424 end
2525
2626 defp deps do
27- [{:sentry, "~> 6.3 "}]
27+ [{:sentry, "~> 6.4 "}]
2828 end
2929
3030 Configuration
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule Sentry.Mixfile do
44 def project do
55 [
66 app: :sentry ,
7- version: "6.3 .0" ,
7+ version: "6.4 .0" ,
88 elixir: "~> 1.3" ,
99 description: "The Official Elixir client for Sentry" ,
1010 package: package ( ) ,
You can’t perform that action at this time.
0 commit comments