Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoesteves committed May 9, 2024
1 parent 636f926 commit b7a375d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion lib/jellyfish/tasks/compile/appup.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
10 changes: 5 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -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
Expand Down

0 comments on commit b7a375d

Please sign in to comment.