From 6e2218a179312a35f75a050d8eb45a78e0a9d2ba Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Fri, 20 Sep 2024 18:06:38 -0400 Subject: [PATCH] v0.1.0-rc.2 --- CHANGELOG.md | 2 +- assets/package.json | 2 +- guides/introduction/installation.md | 4 ++-- mix.exs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3e29bde..afe0ee10 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 6ddbc675..24f32338 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 1f4c3b78..a6cd2d1d 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 b4c480d0..5c23648e 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"