diff --git a/CHANGELOG.md b/CHANGELOG.md index f3e29bdec..afe0ee10c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.1.0-rc.2 (WIP) +## 0.1.0-rc.2 (2024-09-20) ### Breaking Changes * Renamed component `.icon` to `.heroicon` to make it explicit that it's rendering Heroicons and also to avoid future conflicts diff --git a/assets/package.json b/assets/package.json index 6ddbc6754..24f323380 100644 --- a/assets/package.json +++ b/assets/package.json @@ -1,6 +1,6 @@ { "name": "beacon", - "version": "0.1.0-rc.1", + "version": "0.1.0-rc.2", "license": "MIT", "repository": {}, "scripts": { diff --git a/guides/introduction/installation.md b/guides/introduction/installation.md index 1f4c3b78e..a6cd2d1dc 100644 --- a/guides/introduction/installation.md +++ b/guides/introduction/installation.md @@ -53,8 +53,8 @@ Note that Beacon supports Umbrella applications as well. 7. Add `:beacon` and `:beacon_live_admin` dependencies to `mix.exs` ```diff - + {:beacon, "~> 0.1.0-rc.1", override: true}, - + {:beacon_live_admin, "~> 0.1.0-rc.1"}, + + {:beacon, "~> 0.1.0-rc.2", override: true}, + + {:beacon_live_admin, "~> 0.1.0"}, ``` 8. Add `:beacon` and `:beacon_live_admin` into `:import_deps` in file `.formatter.exs` diff --git a/mix.exs b/mix.exs index 0e9558937..5c0f7c434 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Beacon.MixProject do use Mix.Project - @version "0.1.0-dev" + @version "0.1.0-rc.2" @source_url "https://github.com/BeaconCMS/beacon" @homepage_url "https://beaconcms.org"