Skip to content

Commit

Permalink
Release v0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgreg committed May 11, 2024
1 parent c973485 commit 55ec00b
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 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.8] - 2024-05-11

#### Added

- Gradient blob component
- Tailwind class formatting

#### Changed

- Updated hero component

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

#### Added
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Can be installed by adding `bloom` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:bloom, "~> 0.0.2"}
{:bloom, "~> 0.0.8"}
]
end
```
Expand All @@ -51,6 +51,16 @@ Some components require Tailwind Config changes - refer to the component doc for
mix bloom.install help
```

#### Install Ecto-backed waitlist & landing page by running:

```
mix bloom.landing_page
```

You will need to run `mix ecto.gen.migration` to create the migration and copy and migrate the contents from waitlist.ex to complete.

You will also need to add the generated LiveView to your router.

## Frequently Asked Questions

### Why are the components manually installed?
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/landing_page.ex
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ defmodule Mix.Tasks.Bloom.LandingPage do
end)

Mix.shell().info(
"Landing page generated - don't forget to run the migration specified in the waitlist.ex module"
"Landing page generated - don't forget to run the migration specified in the waitlist.ex module and add the liveview to your router."
)
end

Expand Down
4 changes: 2 additions & 2 deletions 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.7",
version: "0.0.8",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down Expand Up @@ -36,7 +36,7 @@ defmodule Bloom.MixProject do
defp deps do
[
{:phoenix, "~> 1.7.6"},
{:phoenix_live_view, "~> 0.20"},
{:phoenix_live_view, "~> 0.19"},
{:phoenix_html, ">= 3.3.3"},
{:mox, "~> 1.0", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
Expand Down

0 comments on commit 55ec00b

Please sign in to comment.