Skip to content

Commit 574f057

Browse files
committed
Update changelog date
1 parent a472fe1 commit 574f057

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.0.1] - 2026-08-11
8+
9+
### Fixed
10+
11+
* The CLDR-to-Unicode version table behind `Localize.Ecto.Audit.unicode_versions/1` recorded CLDR 48 as Unicode 16.0 and CLDR 49 as 17.0; the correct values are 17.0 and 18.0. `mix localize.ecto.audit` no longer reports spurious drift against a PostgreSQL 18 server linked against ICU 77, which is also Unicode 17.
12+
13+
### Changed
14+
15+
* The collation guide now recommends the builtin providers over `C.UTF-8` as a version ladder — `PG_UNICODE_FAST` on PostgreSQL 18+, `PG_C_UTF8` on 17, `C` earlier — and documents their equivalence to Elixir's own string ordering. `PG_UNICODE_FAST` keeps the prefix-`LIKE` index optimization that ICU collations forgo.
16+
717
## [1.0.0] - 2026-07-31
818

919
Renamed from `localize_ecto` to **`localize_sql`** — the package is about SQL databases (collations, serialization, migrations), not Ecto in general, which can be used without a database. The `Localize.Ecto.*` module namespace and the `mix localize.ecto.audit` task are unchanged; the app, config key (`:localize_sql`), env var (`LOCALIZE_SQL_SQLITE_ICU`) and `priv/localize_sql/` path are renamed.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,4 @@ If a PostgreSQL upgrade links a newer ICU library whose collation data changed
198198

199199
Copyright 2026 Kip Cole
200200

201-
Licensed under the Apache License, Version 2.0. See [LICENSE](https://github.com/elixir-localize/localize_sql/blob/v1.0.0/LICENSE.md).
201+
Licensed under the Apache License, Version 2.0. See [LICENSE](https://github.com/elixir-localize/localize_sql/blob/v1.0.1/LICENSE.md).

mix.exs

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

4-
@version "1.0.0"
4+
@version "1.0.1"
55
@source_url "https://github.com/elixir-localize/localize_sql"
66

77
def project do

0 commit comments

Comments
 (0)