From 41183bcd9dc80d67c80455e7fee84acaefbdce15 Mon Sep 17 00:00:00 2001 From: Alessio Montagnani Date: Fri, 21 Jun 2024 14:02:10 +0200 Subject: [PATCH] chore: release version v1.1.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- mix.exs | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d8ac52..6692021 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v1.1.0](https://github.com/zoonect-oss/ash_uuid/compare/v1.0.0...v1.1.0) (2024-06-21) + + + + +### Bug Fixes: + +* added tests for the workaround suggested to close #10 + +* require ash_postgres 2.0.11 or later + +* Ash.Type.generator expects DataStream + ## [v1.0.0](https://github.com/zoonect-oss/ash_uuid/compare/v0.8.0-rc.1...v1.0.0) (2024-05-31) ### Breaking Changes: diff --git a/README.md b/README.md index 21974bd..7baab14 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ ```elixir def deps do [ - {:ash_uuid, "~> 1.0.0"}, + {:ash_uuid, "~> 1.1.0"}, ] end ``` @@ -20,7 +20,7 @@ end Adoption: -- add `{:ash_uuid, "~> 1.0.0"}` to your `mix.exs` project deps; +- add `{:ash_uuid, "~> 1.1.0"}` 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 b7ba524..5f4385d 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule AshUUID.MixProject do use Mix.Project @name :ash_uuid - @version "1.0.0" + @version "1.1.0" @description "Tools for using UUID based id with Ash" @source_url "https://github.com/zoonect-oss/ash_uuid"