Skip to content

Commit

Permalink
Fix hex release
Browse files Browse the repository at this point in the history
  • Loading branch information
srcrip committed May 17, 2024
1 parent 211e99d commit ea1ae1c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file.

Note that the versions prior to `0.6.0` are very unstable.

## [v0.1.0] (2024-03-06)

🚀 Initial release.
Expand Down Expand Up @@ -33,3 +35,11 @@ Tightening up a few bugs found during the creation of the demo.
## [v0.4.3] (2024-05-15)

Fix implementation of `send_toast`.

## [v0.5.0] (2024-05-16)

New Public API.

## [v0.6.0] (2024-05-17)

Fixed Hex release. Some files were missing from the build.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ application:
```elixir
def deps do
[
{:live_toast, "~> 0.5.0"}
{:live_toast, "~> 0.6.0"}
]
end
```
Expand Down
22 changes: 18 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule LiveToast.MixProject do

use Mix.Project

@version "0.5.0"
@version "0.6.0"

def project do
[
Expand Down Expand Up @@ -58,12 +58,26 @@ defmodule LiveToast.MixProject do
Changelog: "https://hexdocs.pm/live_toast/changelog.html",
GitHub: "https://github.com/srcrip/live_toast"
},
files:
~w(assets/js lib/live_toast.ex priv) ++
~w(CHANGELOG.md LICENSE.md mix.exs package.json README.md)
files: files()
]
end

defp files do
~w"""
assets/js
priv
lib/live_toast.ex
lib/live_toast/components.ex
lib/live_toast/live_component.ex
lib/live_toast/utility.ex
CHANGELOG.md
LICENSE.md
mix.exs
package.json
README.md
"""
end

defp docs do
[
main: "readme",
Expand Down

0 comments on commit ea1ae1c

Please sign in to comment.