Skip to content

Commit

Permalink
Merge pull request #44 from kipcole9/master
Browse files Browse the repository at this point in the history
Don't include :wx or :observer in :extra_applications
  • Loading branch information
kipcole9 authored Oct 21, 2024
2 parents ad6d433 + 9971111 commit 6832961
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand All @@ -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

Expand Down

0 comments on commit 6832961

Please sign in to comment.