diff --git a/CHANGELOG.md b/CHANGELOG.md index d3723c9..6f513dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ Every time axe-core gets a major/minor/patch upgrade, this project also gets a major/minor/patch upgrade. But this project can also have upgrades unrelated to axe-core, which follow semantic versioning. As a result, this project's versions will not match axe-core versions exactly. Refer to [package-lock.json](./assets/package-lock.json) to learn the exact axe-core version currently used, or read the changelog. +## 0.2.2 (2024-10-26) + +- Upgrade axe-core to 4.10.2. + ## 0.2.1 (2024-10-20) - Upgrade axe-core to 4.10.1. diff --git a/README.md b/README.md index 3c3b982..8d91242 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The library can be installed by adding `a11y_audit` to your list of dependencies ```elixir def deps do [ - {:a11y_audit, "~> 0.2.1", only: :test} + {:a11y_audit, "~> 0.2.2", only: :test} ] end ``` diff --git a/mix.exs b/mix.exs index 8e44eee..b53a32c 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule A11yAudit.MixProject do def project do [ app: :a11y_audit, - version: "0.2.1", + version: "0.2.2", elixir: "~> 1.13", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,