From d7bd87de90ecffad2141ca7605711be24e3eabbf Mon Sep 17 00:00:00 2001 From: Thiago Esteves Date: Thu, 9 May 2024 14:00:45 -0300 Subject: [PATCH] Fixing typo --- README.md | 2 +- lib/jellyfish/tasks/compile/appup.ex | 2 +- mix.exs | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 467073b..139db84 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ by adding `jellyfish` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:jellyfish, "~> 0.1.0"} + {:jellyfish, "~> 0.1.1"} ] end ``` diff --git a/lib/jellyfish/tasks/compile/appup.ex b/lib/jellyfish/tasks/compile/appup.ex index 3d0d559..d907e50 100644 --- a/lib/jellyfish/tasks/compile/appup.ex +++ b/lib/jellyfish/tasks/compile/appup.ex @@ -19,7 +19,7 @@ defmodule Mix.Tasks.Compile.Appup do app_name = Mix.Project.config()[:app] with [file] <- Path.wildcard("rel/appups/#{app_name}/*_to_#{version}.appup") do - dst = Path.join(Mix.Project.compile_path(), "holidex.appup") + dst = Path.join(Mix.Project.compile_path(), "#{app_name}.appup") edit_appup? = System.get_env("EDIT_APPUP") diff --git a/mix.exs b/mix.exs index 911e4c9..f861fec 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Jellyfish.MixProject do def project do [ app: :jellyfish, - version: "0.1.0", + version: "0.1.1", elixir: "~> 1.16", start_permanent: Mix.env() == :prod, deps: deps(), @@ -30,12 +30,12 @@ defmodule Jellyfish.MixProject do defp package do [ files: ["lib", "priv", "mix.exs", "README.md", "LICENSE.md", ".formatter.exs"], - maintainers: ["Paul Schoenfelder"], + maintainers: ["Thiago Esteves", "Matthew Galvin"], licenses: ["MIT"], links: %{ - Documentation: "https://hexdocs.pm/distillery", - Changelog: "https://hexdocs.pm/distillery/changelog.html", - GitHub: "https://github.com/bitwalker/distillery" + Documentation: "https://hexdocs.pm/jellyfish", + Changelog: "https://hexdocs.pm/jellyfish/changelog.html", + GitHub: "https://github.com/bitwalker/jellyfish" } ] end