From 74b2291fe219bfd430eba347a8ec80267921c179 Mon Sep 17 00:00:00 2001 From: James Harton Date: Mon, 2 Oct 2023 02:29:20 +0000 Subject: [PATCH] chore: release version v0.3.1 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 847d539..9cfea29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.3.1](https://code.harton.nz/james/ash_cubdb/compare/v0.3.0...v0.3.1) (2023-10-02) + + + + +### Bug Fixes: + +* enable sorting capability. + ## [v0.3.0](https://code.harton.nz/james/ash_cubdb/compare/v0.2.0...v0.3.0) (2023-10-02) diff --git a/README.md b/README.md index fa1843f..2a2ccee 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ by adding `ash_cubdb` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:ash_cubdb, "~> 0.3.0"} + {:ash_cubdb, "~> 0.3.1"} ] end ``` diff --git a/mix.exs b/mix.exs index baf5ac2..3ff7004 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshCubDB.MixProject do use Mix.Project - @version "0.3.0" + @version "0.3.1" @moduledoc """ A CubDB data layer for `Ash` resources.