From 3a6e81ce64ae580af300c2abf825fef310314b2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20M=C3=A4nnchen?= Date: Wed, 13 Nov 2024 14:31:01 +0100 Subject: [PATCH] Release v0.26.2 --- CHANGELOG.md | 7 +++++++ mix.exs | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0048a86..4b46baa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.26.2 + +* Introduces warning if plural messages are defined with the same singular + message and conflicting plural messages. +* Improves performance by striping not required metadata when compiling the + Gettext backend. + ## v0.26.1 * Address backwards incompatible changes in previous release diff --git a/mix.exs b/mix.exs index 536e1ab..5c59230 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Gettext.Mixfile do use Mix.Project - @version "0.26.1" + @version "0.26.2" @description "Internationalization and localization through gettext" @repo_url "https://github.com/elixir-gettext/gettext"