diff --git a/CHANGELOG.md b/CHANGELOG.md index 610b3e2..743a492 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v1.1.2](https://github.com/zoonect-oss/ash_uuid/compare/v1.1.1...v1.1.2) (2024-11-04) + + + + +### Bug Fixes: + +* allows greater version for ash and ash_postgres + ## [v1.1.1](https://github.com/zoonect-oss/ash_uuid/compare/v1.1.0...v1.1.1) (2024-07-01) diff --git a/README.md b/README.md index aa3c1a9..691b6fc 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ ```elixir def deps do [ - {:ash_uuid, "~> 1.1.1"}, + {:ash_uuid, "~> 1.1.2"}, ] end ``` @@ -20,7 +20,7 @@ end Adoption: -- add `{:ash_uuid, "~> 1.1.1"}` to your `mix.exs` project deps; +- add `{:ash_uuid, "~> 1.1.2"}` to your `mix.exs` project deps; - add `AshUUID.PostgresExtension` to your app Repo's installed_extensions and set AshUUID config `migration_default?: true` if Postgres-side UUIDs generation is needed; diff --git a/mix.exs b/mix.exs index 7e9f2bd..d4851a3 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule AshUUID.MixProject do use Mix.Project @name :ash_uuid - @version "1.1.1" + @version "1.1.2" @description "Tools for using UUID based id with Ash" @source_url "https://github.com/zoonect-oss/ash_uuid"