From e3a1f110ca46b50774943fac9b711416a31887ea Mon Sep 17 00:00:00 2001 From: Alessio Montagnani Date: Wed, 3 Apr 2024 19:22:37 +0200 Subject: [PATCH] chore: release version v0.8.0-rc.1 --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- mix.exs | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68b8cdf..beadcd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.8.0-rc.1](https://github.com/zoonect-oss/ash_uuid/compare/v0.8.0-rc.0...v0.8.0-rc.1) (2024-04-03) + + + + ## [v0.8.0-rc.0](https://github.com/zoonect-oss/ash_uuid/compare/v0.7.0...v0.8.0-rc.0) (2024-04-03) diff --git a/README.md b/README.md index cbd5d55..c12e394 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ ```elixir def deps do [ - {:ash_uuid, "~> 0.8.0-rc.0"}, + {:ash_uuid, "~> 0.8.0-rc.1"}, ] end ``` @@ -20,7 +20,7 @@ end Adoption: -- add `{:ash_uuid, "~> 0.8.0-rc.0"}`` to your `mix.exs`` project deps; +- add `{:ash_uuid, "~> 0.8.0-rc.1"}`` 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 f24f091..b30416d 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule AshUUID.MixProject do use Mix.Project @name :ash_uuid - @version "0.8.0-rc.0" + @version "0.8.0-rc.1" @description "Tools for using UUID based id with Ash" @source_url "https://github.com/zoonect-oss/ash_uuid"