diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b6420a..822c143 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## Changelog for Tz_World +## Tz_World v1.4.1 + +This is the changelog for Tz_World v1.4.1 released on ______, 2024. For older changelogs please consult the release tag on [GitHub](https://github.com/kimlai/tz_world/tags) + +### Bug Fixes + +* Don't include `:wx` and `:observer` in `:extra_applications` since this propogates and `:wx` may not be compiled in the target runtime. Thanks to @mayel for the report. Fixes #43. + ## Tz_World v1.4.0 This is the changelog for Tz_World v1.4.0 released on September 29th, 2024. For older changelogs please consult the release tag on [GitHub](https://github.com/kimlai/tz_world/tags) diff --git a/mix.exs b/mix.exs index 83a9983..365b23f 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule TzWorld.Mixfile do use Mix.Project @source_url "https://github.com/kimlai/tz_world" - @version "1.4.0" + @version "1.4.1" def project do [ @@ -25,7 +25,7 @@ defmodule TzWorld.Mixfile do def application do [ - extra_applications: [:logger, :public_key, :inets, :ssl, :wx, :observer] + extra_applications: [:logger, :public_key, :inets, :ssl] ] end