Skip to content

Commit

Permalink
Release v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgreg committed May 4, 2024
1 parent 9a4a962 commit a4b6572
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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

### [0.0.7] - 2024-05-01

#### Added

- Avatar component
- Ability to add JS to components

#### Changed

- Utilising @doc from components in Storybook

### [0.0.6] - 2024-05-01

#### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<img src={~p"/images/bloom.png"} width="36" />
</a>
<p class="bg-brand/5 text-brand rounded-full px-2 font-medium leading-6">
v0.0.6
v0.0.7
</p>
</div>
<div class="flex items-center gap-4 font-semibold leading-6 text-zinc-900">
Expand Down
2 changes: 1 addition & 1 deletion bloom_site/lib/bloom_site_web/live/landing_live.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
<.code_snippet>
defp deps do
[
{:bloom, "~> 0.0.6"},
{:bloom, "~> 0.0.7"},
]
end
</.code_snippet>
Expand Down
4 changes: 2 additions & 2 deletions bloom_site/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ defmodule BloomSite.MixProject do
{:gettext, "~> 0.20"},
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.5"},
# {:bloom, "~> 0.0.6"},
{:bloom, path: "..", override: true},
{:bloom, "~> 0.0.7"},
# {:bloom, path: "..", override: true},
{:phoenix_storybook, "~> 0.6.0"}
]
end
Expand Down
2 changes: 1 addition & 1 deletion bloom_site/storybook/welcome.story.exs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ defmodule Storybook.MyPage do
<p>Can be installed by adding bloom to your list of dependencies in mix.exs:</p>
<pre><code>def deps do
[
{:bloom, "~> 0.0.6"}
{:bloom, "~> 0.0.7"}
]
end</code></pre>
<p>Relies on Phoenix being installed.</p>
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Bloom.MixProject do
def project do
[
app: :bloom,
version: "0.0.6",
version: "0.0.7",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down

0 comments on commit a4b6572

Please sign in to comment.