Skip to content

Commit

Permalink
Merge pull request #8 from kraken-tech/release-0.1.0a2
Browse files Browse the repository at this point in the history
Release 0.1.0a2
  • Loading branch information
seddonym authored Sep 23, 2024
2 parents 39014d0 + 364723c commit 4e6b3a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand Down

0 comments on commit 4e6b3a1

Please sign in to comment.