From ec11b8e85d720992bcf249b1307763d01a4d527a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Fri, 26 Aug 2022 15:45:01 -0400 Subject: [PATCH 1/4] [opensource] Rename the repo again so it matches everything --- README.md | 2 +- mix.exs | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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/mix.exs b/mix.exs index 7a0d423..3b31313 100644 --- a/mix.exs +++ b/mix.exs @@ -1,11 +1,11 @@ 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, + app: :co_mix, version: "1.0.0", elixir: "~> 1.12", package: package(), @@ -36,6 +36,7 @@ defmodule CoMix.MixProject do defp package do [ + name: "CoMix", files: ["lib", "LICENSE", "mix.exs", "README.md"], maintainers: ["Simpli.fi Development Team"], licenses: ["MIT"], From 464da4484756f5b43fcd0f9ec52989f0c3101ef7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Fri, 26 Aug 2022 15:46:06 -0400 Subject: [PATCH 2/4] vump: 1.0.2 --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 3b31313..791aeba 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule CoMix.MixProject do def project do [ app: :co_mix, - version: "1.0.0", + version: "1.0.2", elixir: "~> 1.12", package: package(), description: "Common mix.exs code that all projects can benefit from", From d4075a142fb9d163f02948d8e62ba36b04443be3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Mon, 29 Aug 2022 11:58:19 -0400 Subject: [PATCH 3/4] Remove incorrectly formatted name, woops --- mix.exs | 1 - 1 file changed, 1 deletion(-) diff --git a/mix.exs b/mix.exs index 791aeba..e7ad771 100644 --- a/mix.exs +++ b/mix.exs @@ -36,7 +36,6 @@ defmodule CoMix.MixProject do defp package do [ - name: "CoMix", files: ["lib", "LICENSE", "mix.exs", "README.md"], maintainers: ["Simpli.fi Development Team"], licenses: ["MIT"], From bdc5ca34b1087678a54ee3e20168a3b9ae3d2ad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Mon, 29 Aug 2022 12:24:35 -0400 Subject: [PATCH 4/4] Use name-consistent filenames --- lib/{comix.ex => co_mix.ex} | 0 test/{comix_test.exs => co_mix_test.exs} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename lib/{comix.ex => co_mix.ex} (100%) rename test/{comix_test.exs => co_mix_test.exs} (100%) 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/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