Skip to content

Commit 4e6b3a1

Browse files
authored
Merge pull request #8 from kraken-tech/release-0.1.0a2
Release 0.1.0a2
2 parents 39014d0 + 364723c commit 4e6b3a1

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
66
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.1.0a2] - 2024-09-23
9+
10+
- Changed error handling during `Bundle` instantiation. Now message errors will be ignored by default, overrideable
11+
by a new `strict` parameter. In this mode, a `ParserError` will be raised instead of a `ValueError` as before.
12+
- Renamed the `namespace` argument to `language`.
13+
- Fluent message variables are now no longer passed to `get_translation` using `**kwargs`; instead a `variables`
14+
parameter is used.
915

1016
## [0.1.0a1] - 2024-09-13
1117

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
]
2222
# Do not manually edit the version, use `make version_{type}` instead.
2323
# This should match the version in the [tool.bumpversion] section.
24-
version = "0.1.0a1"
24+
version = "0.1.0a2"
2525
dependencies = []
2626

2727
[project.urls]
@@ -133,7 +133,7 @@ filterwarnings = "error"
133133
[tool.bumpversion]
134134
# Do not manually edit the version, use `make version_{type}` instead.
135135
# This should match the version in the [project] section.
136-
current_version = "0.1.0a1"
136+
current_version = "0.1.0a2"
137137
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
138138
serialize = ["{major}.{minor}.{patch}"]
139139
search = "{current_version}"

0 commit comments

Comments
 (0)