Skip to content

Commit 6b48def

Browse files
authored
Release v0.4.0 (#28)
1 parent e4c745a commit 6b48def

3 files changed

Lines changed: 20 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.0] - 2023-06-28
11+
12+
### Added
13+
14+
- Add support for Phoenix LiveDashboard `~> 0.8.0`. Now this is the only supported version.
15+
Thanks [@moxley](https://github.com/moxley).
16+
17+
### Fixed
18+
19+
- Improve Telemetry performance by using a handler with module name.
20+
Thanks [@louisvisser](https://github.com/louisvisser).
21+
22+
### Removed
23+
24+
- Remove support for previous versions of Phoenix LiveDashboard. Now only `v0.8` is supported.
25+
1026
## [0.3.0] - 2022-10-03
1127

1228
### Added
@@ -41,7 +57,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4157

4258
- Initial release of Broadway Dashboard.
4359

44-
[Unreleased]: https://github.com/dashbitco/broadway_dashboard/compare/v0.3.0...HEAD
60+
[Unreleased]: https://github.com/dashbitco/broadway_dashboard/compare/v0.4.0...HEAD
61+
[0.4.0]: https://github.com/dashbitco/broadway_dashboard/compare/v0.3.0...v0.4.0
4562
[0.3.0]: https://github.com/dashbitco/broadway_dashboard/compare/v0.2.2...v0.3.0
4663
[0.2.2]: https://github.com/dashbitco/broadway_dashboard/compare/v0.2.1...v0.2.2
4764
[0.2.1]: https://github.com/dashbitco/broadway_dashboard/compare/v0.2.0...v0.2.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Add the following to your `mix.exs` and run mix `deps.get`:
7878
```elixir
7979
def deps do
8080
[
81-
{:broadway_dashboard, "~> 0.3.0"}
81+
{:broadway_dashboard, "~> 0.4.0"}
8282
]
8383
end
8484
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule BroadwayDashboard.MixProject do
22
use Mix.Project
33

4-
@version "0.3.0"
4+
@version "0.4.0"
55
@description "A Phoenix LiveDashboard page for inspecting your Broadway pipelines"
66

77
def project do

0 commit comments

Comments
 (0)