Skip to content

Commit

Permalink
Merge pull request #33 from curiosum-dev/fix/enable-recompilation-fal…
Browse files Browse the repository at this point in the history
…se-as-default

Sets enable_recompilation config to false as default
  • Loading branch information
szsoppa authored Sep 13, 2023
2 parents f6d8158 + 6526039 commit d6c11f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Add the following to your `mix.exs` file:
```elixir
defp deps do
[
{:contexted, "~> 0.1.9"}
{:contexted, "~> 0.1.10"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/contexted/utils.ex
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ defmodule Contexted.Utils do
"""
@spec recompilation_enabled? :: boolean()
def recompilation_enabled? do
Application.get_env(:contexted, :enable_recompilation)
Application.get_env(:contexted, :enable_recompilation, false)
end
end
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule Contexted.MixProject do
app: :contexted,
description:
"Contexted is an Elixir library designed to streamline the management of complex Phoenix contexts in your projects, offering tools for module separation, subcontext creation, and auto-generating CRUD operations for improved code maintainability.",
version: "0.1.9",
version: "0.1.10",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down

0 comments on commit d6c11f7

Please sign in to comment.