diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 00c85d8..889c3d7 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -8,8 +8,8 @@ jobs: - uses: actions/checkout@v2 - uses: erlef/setup-beam@v1 with: - otp-version: '25.1' - elixir-version: '1.14.5' + otp-version: "25.1" + elixir-version: "1.16.3" - run: mix deps.get - run: mix format --check-formatted - run: mix test @@ -25,8 +25,8 @@ jobs: - uses: actions/checkout@v2 - uses: erlef/setup-beam@v1 with: - otp-version: '25.1' - elixir-version: '1.14.5' + otp-version: "25.1" + elixir-version: "1.16.3" - run: mix deps.unlock --all - run: mix deps.get - run: mix test @@ -38,8 +38,8 @@ jobs: - uses: actions/checkout@v2 - uses: erlef/setup-beam@v1 with: - otp-version: '25.1' - elixir-version: '1.14.5' + otp-version: "25.1" + elixir-version: "1.16.3" - uses: actions/setup-node@v4 with: node-version: 18 diff --git a/CHANGELOG.md b/CHANGELOG.md index f042d11..525d33a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v3.0.0 - 2026-02-19 ### Breaking - Update for liveview > 1.0 diff --git a/README.md b/README.md index 2e20d5b..47001b9 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The package can be installed by adding `bitstyles_phoenix` to your list of depen ```elixir def deps do [ - {:bitstyles_phoenix, "~> 2.5"} + {:bitstyles_phoenix, "~> 3.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 738484e..5056bd0 100644 --- a/mix.exs +++ b/mix.exs @@ -4,8 +4,8 @@ defmodule BitstylesPhoenix.MixProject do def project do [ app: :bitstyles_phoenix, - version: "2.5.2", - elixir: "~> 1.11", + version: "3.0.0", + elixir: "~> 1.15", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, deps: deps(),