From b7c247b2e7acccff65eebc8376b83abf17613eef Mon Sep 17 00:00:00 2001 From: Leon Linhart Date: Tue, 13 Dec 2022 17:30:02 +0100 Subject: [PATCH] chore: prepare 0.6.0 release --- docs/changelog/0.6.0.md | 2 +- docs/changelog/README.md | 4 ++-- docs/changelog/full.md | 26 ++++++++++++++++++++++++++ docs/changelog/latest.md | 19 +++++++++++++++---- 4 files changed, 44 insertions(+), 7 deletions(-) diff --git a/docs/changelog/0.6.0.md b/docs/changelog/0.6.0.md index ab638a5..94b2d2a 100644 --- a/docs/changelog/0.6.0.md +++ b/docs/changelog/0.6.0.md @@ -1,6 +1,6 @@ ### 0.6.0 -_Not Released Yet_ +_Released 2022 Dec 13_ #### Improvements diff --git a/docs/changelog/README.md b/docs/changelog/README.md index a141c97..4f9c0e3 100644 --- a/docs/changelog/README.md +++ b/docs/changelog/README.md @@ -4,8 +4,8 @@ ### Version History -* ????-??-?? [0.6.0](0.6.0.md) (TBD; work in progress) -* 2022-11-10 [0.5.0](0.5.0.md) (latest) +* 2022-12-13 [0.6.0](0.6.0.md) (latest) +* 2022-11-10 [0.5.0](0.5.0.md) * 2022-09-24 [0.4.0](0.4.0.md) * 2022-06-02 [0.3.0](0.3.0.md) * 2021-07-30 [0.2.0](0.2.0.md) diff --git a/docs/changelog/full.md b/docs/changelog/full.md index 0a56e69..bf0bd9b 100644 --- a/docs/changelog/full.md +++ b/docs/changelog/full.md @@ -1,3 +1,29 @@ +### 0.6.0 + +_Released 2022 Dec 13_ + +#### Improvements + +- `AbstractExpression` does now define a `public` constructor. Consequentially, + it may now be extended by consumers. [[GH-4](https://github.com/Osmerion/Quitte/issues/4)] +- Various JavaDoc improvements. + +#### Fixes + +- Fixed a bug that caused `ObservableList#setAll` to skip some elements. [[GH-5](https://github.com/Osmerion/Quitte/issues/5)] + (Thanks to [SkytAsul](https://github.com/SkytAsul)) +- Reduced the visibility of some accidentally exposed expression members. + +#### Breaking Changes + +- Several members of simple and lazy expressions had their visibility reduced + and may no longer be accessible. These methods were considered unsafe and + should not have been exposed in the first place. Proper alternatives are + available. + + +--- + ### 0.5.0 _Released 2022 Nov 10_ diff --git a/docs/changelog/latest.md b/docs/changelog/latest.md index 97cec55..94b2d2a 100644 --- a/docs/changelog/latest.md +++ b/docs/changelog/latest.md @@ -1,11 +1,22 @@ -### 0.5.0 +### 0.6.0 -_Released 2022 Nov 10_ +_Released 2022 Dec 13_ #### Improvements -- Changed the license information in the POM to use a valid [SPDX identifier](https://spdx.org/licenses/). +- `AbstractExpression` does now define a `public` constructor. Consequentially, + it may now be extended by consumers. [[GH-4](https://github.com/Osmerion/Quitte/issues/4)] +- Various JavaDoc improvements. #### Fixes -- Fixed a bug that caused expression dependencies to be incorrectly tracked. \ No newline at end of file +- Fixed a bug that caused `ObservableList#setAll` to skip some elements. [[GH-5](https://github.com/Osmerion/Quitte/issues/5)] + (Thanks to [SkytAsul](https://github.com/SkytAsul)) +- Reduced the visibility of some accidentally exposed expression members. + +#### Breaking Changes + +- Several members of simple and lazy expressions had their visibility reduced + and may no longer be accessible. These methods were considered unsafe and + should not have been exposed in the first place. Proper alternatives are + available. \ No newline at end of file