diff --git a/README.md b/README.md index 7e31716..48b12b7 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/lib/contexted/utils.ex b/lib/contexted/utils.ex index 7021a7b..08ddce6 100644 --- a/lib/contexted/utils.ex +++ b/lib/contexted/utils.ex @@ -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 diff --git a/mix.exs b/mix.exs index 8c9e3f1..91eb032 100644 --- a/mix.exs +++ b/mix.exs @@ -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(),