diff --git a/CHANGELOG.md b/CHANGELOG.md index 360ecb2..83840fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.0] - 2024-10-04 + +### Added + +- Can include less verbose `TowerSentry` as reporter instead of `TowerSentry.Reporter`. + +### Changed + +- No longer necessary to call `Tower.attach()` in your application `start`. It is done +automatically. + +- Updates `tower` dependency from `{:tower, "~> 0.5.0"}` to `{:tower, "~> 0.6.0"}`. + ## [0.2.1] - 2024-09-13 ### Added @@ -16,4 +29,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support elixir 1.15+ - Support sentry 10.3+ +[0.3.0]: https://github.com/mimiquate/tower_sentry/compare/v0.2.1...v0.3.0/ [0.2.1]: https://github.com/mimiquate/tower_sentry/compare/v0.2.0...v0.2.1/ diff --git a/README.md b/README.md index acfbb5d..1761794 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Package can be installed by adding `tower_sentry` to your list of dependencies i ```elixir def deps do [ - {:tower_sentry, "~> 0.2.1"} + {:tower_sentry, "~> 0.3.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 0bb4c8b..9436f55 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule TowerSentry.MixProject do @description "Error tracking and reporting to Sentry" @source_url "https://github.com/mimiquate/tower_sentry" - @version "0.2.1" + @version "0.3.0" def project do [