diff --git a/README.md b/README.md index 9f689fc..949500f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Add this to the top of your mix.exs file: ```elixir unless Kernel.function_exported?(CoMix, :version, 0) do {:ok, _} = Application.ensure_all_started(:hex) - Mix.install([{:comix, "~> 1.0", runtime: false}]) + Mix.install([{:co_mix, "~> 1.0", runtime: false}]) end ``` Then set `version = CoMix.version()` inside of the `def project`, instead of using a hardcoded version. diff --git a/lib/comix.ex b/lib/co_mix.ex similarity index 100% rename from lib/comix.ex rename to lib/co_mix.ex diff --git a/mix.exs b/mix.exs index 7a0d423..e7ad771 100644 --- a/mix.exs +++ b/mix.exs @@ -1,12 +1,12 @@ defmodule CoMix.MixProject do use Mix.Project - defp github, do: "https://github.com/simplifi/comix" + defp github, do: "https://github.com/simplifi/co_mix" def project do [ - app: :comix, - version: "1.0.0", + app: :co_mix, + version: "1.0.2", elixir: "~> 1.12", package: package(), description: "Common mix.exs code that all projects can benefit from", diff --git a/test/comix_test.exs b/test/co_mix_test.exs similarity index 100% rename from test/comix_test.exs rename to test/co_mix_test.exs