diff --git a/CHANGELOG.md b/CHANGELOG.md index 76c4213..2926617 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,12 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Unreleased changes will be displayed here upon implementation. -## [0.2.0] - 2025-08-13 - -### Added +## [0.2.2] - 2025-11-15 -- [JSV](https://hexdocs.pm/jsv/JSV.html)-compatible JsonSchema definitions for `format` and `defaults` as - `ValueFormatter.Schema.Format` and `ValueFormatter.Schema.DefaultFormats`, respectively. +### Added +- Added support for custom coordinate separators in coordinate formatting. ## [0.2.1] - 2025-10-28 @@ -22,5 +20,13 @@ Unreleased changes will be displayed here upon implementation. - Minor documentation fixes and improvements. -[unreleased]: https://github.com/box-id/value_formatters/compare/0.2.1...HEAD +## [0.2.0] - 2025-08-13 + +### Added + +- [JSV](https://hexdocs.pm/jsv/JSV.html)-compatible JsonSchema definitions for `format` and `defaults` as + `ValueFormatter.Schema.Format` and `ValueFormatter.Schema.DefaultFormats`, respectively. + +[unreleased]: https://github.com/box-id/value_formatters/compare/0.2.2...HEAD +[0.2.2]: https://github.com/box-id/value_formatters/releases/tag/0.2.2 [0.2.1]: https://github.com/box-id/value_formatters/releases/tag/0.2.1 diff --git a/mix.exs b/mix.exs index d4fd4a3..3e2dd81 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule ValueFormatters.MixProject do def project do [ app: :value_formatters, - version: "0.2.1", + version: "0.2.2", elixir: "~> 1.15", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,