Skip to content

Commit 6c190c0

Browse files
authored
Release v0.24.0 (#382)
1 parent 0bea16e commit 6c190c0

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## v0.24.0
4+
5+
* Handle singular and plural messages with the same `msgid` as the same
6+
message.
7+
8+
This change produces a `Expo.PO.DuplicateMessagesError` if you already have
9+
messages with the same singular `msgid`. This can be solved by calling the
10+
`expo.msguniq` mix task on your `.po` file:
11+
12+
```bash
13+
mix expo.msguniq \
14+
priv/gettext/LOCALE/LC_MESSAGES/DOMAIN.po \
15+
--output-file priv/gettext/LOCALE/LC_MESSAGES/DOMAIN.po
16+
```
17+
318
## v0.23.1
419

520
* Use the Hex version of the excoveralls dependency.

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Gettext.Mixfile do
22
use Mix.Project
33

4-
@version "0.24.0-dev"
4+
@version "0.24.0"
55

66
@description "Internationalization and localization through gettext"
77
@repo_url "https://github.com/elixir-gettext/gettext"

0 commit comments

Comments
 (0)