Skip to content

Commit

Permalink
Merge branch 'hotfix/1.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
LiruMouse committed Dec 16, 2022
2 parents fe512f1 + 2eb58c2 commit 2692b36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion lib/co_mix.ex
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ defmodule CoMix do
raise "Closest tag #{inspect(tag)} doesn't start with v?! (not version tag?)"

{:error, error} ->
IO.puts("Could not get version. Error: #{inspect(error)}")
if System.get_env("CO_MIX_DEBUG") do
IO.puts("Could not get version. Error: #{inspect(error)}")
end
@default_version
end
end
Expand Down
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 CoMix.MixProject do
def project do
[
app: :co_mix,
version: "1.0.4",
version: "1.0.5",
elixir: "~> 1.12",
package: package(),
description: "Common mix.exs code that all projects can benefit from",
Expand Down

0 comments on commit 2692b36

Please sign in to comment.