Skip to content

Commit 4633509

Browse files
committed
Release Keila 0.17.1
1 parent 60598a6 commit 4633509

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
## Unreleased
44

55

6+
## Version 0.17.1
7+
8+
### Fixed
9+
- Fixed error when launching the 0.17.0 release
10+
11+
612
## Version 0.17.0
713

814
👁️ Previews: Seeing is Believing

lib/keila/application.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ defmodule Keila.Application do
5858
end
5959
end
6060

61+
@env Mix.env()
6162
defp maybe_fetch_updates() do
62-
unless Mix.env() == :test do
63+
unless @env == :test do
6364
:ok = Application.ensure_started(:oban)
6465

6566
Keila.Instance.UpdateCronWorker.new(%{})

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Keila.MixProject do
44
def project do
55
[
66
app: :keila,
7-
version: "0.17.0",
7+
version: "0.17.1",
88
elixir: "~> 1.15",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
compilers: [:phoenix] ++ Mix.compilers(),

0 commit comments

Comments
 (0)