diff --git a/README.md b/README.md index 139db84..71559ec 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.1"} + {:jellyfish, "~> 0.1.2"} ] end ``` @@ -37,12 +37,14 @@ You also need to add the following lines in the mix project end ``` -Once the mix release file is generated, it will contain all the appup/release files to execute a hot-upgrade or full deployment. The application that will be able to consume and execute full deployment or hot-upgrade is coming soon. +Once the mix release file is generated, it will contain all the appup/release files to execute a hot-upgrade or full deployment. + +# Examples + +Explore [Deployex](https://github.com/thiagoesteves/deployex), an Elixir application showcasing Jellyfish's capabilities in deployment with hot-upgrades. # References Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc) and published on [HexDocs](https://hexdocs.pm). Once published, the docs can -be found at . - -# jellyfish +be found at . \ No newline at end of file diff --git a/mix.exs b/mix.exs index f861fec..269c6df 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Jellyfish.MixProject do def project do [ app: :jellyfish, - version: "0.1.1", + version: "0.1.2", elixir: "~> 1.16", start_permanent: Mix.env() == :prod, deps: deps(), @@ -35,7 +35,7 @@ defmodule Jellyfish.MixProject do links: %{ Documentation: "https://hexdocs.pm/jellyfish", Changelog: "https://hexdocs.pm/jellyfish/changelog.html", - GitHub: "https://github.com/bitwalker/jellyfish" + GitHub: "https://github.com/thiagoesteves/jellyfish" } ] end