diff --git a/CHANGELOG.md b/CHANGELOG.md index 2152eaf..25ccff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## fluent 0.7.0 (April 11, 2018) - Remove `fluent.migrate`. @@ -9,6 +9,15 @@ [bug 1445881](https://bugzilla.mozilla.org/show_bug.cgi?id=1445881) for more information about the move. + + - Add the `ref` field to `VariantExpression`. (#62) + + The `Identifier`-typed `id` field has been removed. The new `ref` field + contains the `MessageReference` node rigt now. The range of valid + expressions for `ref` may be extended in the future. + + - Fix missing `Spans` on `Function` nodes. + ## fluent 0.6.4 (March 1, 2018) - use compare-locales for plurals ordering ([bug 1415844](https://bugzilla.mozilla.org/show_bug.cgi?id=1415844)) diff --git a/setup.py b/setup.py index 6d99cac..aaf10ca 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name='fluent', - version='0.6.4', + version='0.7.0', description='Localization library for expressive translations.', author='Mozilla', author_email='l10n-drivers@mozilla.org',