diff --git a/CHANGELOG.md b/CHANGELOG.md index 013564f..98b1b44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file. 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). -## [Unreleased] +## [0.1.0a2] - 2024-09-23 + +- Changed error handling during `Bundle` instantiation. Now message errors will be ignored by default, overrideable + by a new `strict` parameter. In this mode, a `ParserError` will be raised instead of a `ValueError` as before. +- Renamed the `namespace` argument to `language`. +- Fluent message variables are now no longer passed to `get_translation` using `**kwargs`; instead a `variables` + parameter is used. ## [0.1.0a1] - 2024-09-13 diff --git a/pyproject.toml b/pyproject.toml index dfa5c67..0b9154d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ classifiers = [ ] # Do not manually edit the version, use `make version_{type}` instead. # This should match the version in the [tool.bumpversion] section. -version = "0.1.0a1" +version = "0.1.0a2" dependencies = [] [project.urls] @@ -133,7 +133,7 @@ filterwarnings = "error" [tool.bumpversion] # Do not manually edit the version, use `make version_{type}` instead. # This should match the version in the [project] section. -current_version = "0.1.0a1" +current_version = "0.1.0a2" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}"