Skip to content

Commit

Permalink
chore: prepare 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMrMilchmann committed Sep 24, 2022
1 parent 2de6bae commit 7eef959
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 17 deletions.
2 changes: 1 addition & 1 deletion docs/changelog/0.4.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### 0.4.0

_Not Released Yet_
_Released 2022 Sep 24_

#### Improvements

Expand Down
4 changes: 2 additions & 2 deletions docs/changelog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

### Version History

* ????-??-?? [0.4.0](0.4.0.md) (TBD; work in progress)
* 2022-06-02 [0.3.0](0.3.0.md) (latest)
* 2022-09-24 [0.4.0](0.4.0.md) (latest)
* 2022-06-02 [0.3.0](0.3.0.md)
* 2021-07-30 [0.2.0](0.2.0.md)
* 2021-05-01 [0.1.0](0.1.0.md)

Expand Down
24 changes: 24 additions & 0 deletions docs/changelog/full.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
### 0.4.0

_Released 2022 Sep 24_

#### Improvements

- New `quitte-compose` module with Jetpack Compose extensions.
- Renamed listener methods for clarity and simpler use.
- Renamed `Observable#addListener(InvalidationListener)` to `addInvalidationListener`.
- Renamed `Observable#removeListener(InvalidationListener)` to `removeInvalidationListener`.
- Renamed `ObservableValue#addBoxedListener` to `addBoxedChangeListener`.
- Renamed `ObservableValue#removeBoxedListener` to `removeBoxedChangeListener`.
- Renamed `Observable${Type}Value#addListener(${Type}ChangeListener)` to `addChangeListener`.
- Renamed `Observable${Type}Value#removeListener(${Type}ChangeListener)` to `removeChangeListener`.
- Renamed `ObservableCollection#addListener(ChangeListener)` to `addChangeListener`.
- Renamed `ObservableCollection#removeListener(ChangeListener)` to `removeChangeListener`.

#### Breaking Changes

- Renamed listener related methods.


---

### 0.3.0

_Released 2022 Jun 02_
Expand Down
27 changes: 13 additions & 14 deletions docs/changelog/latest.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
### 0.3.0
### 0.4.0

_Released 2022 Jun 02_
_Released 2022 Sep 24_

#### Improvements

- New `quitte-kotlinx-coroutines` module with `Flow` conversions.
- Added version information to the module descriptor.
- Updated collection change classes to make use of records and sealed classes.
- Modified `quitte.i18n` to use the more general type `Format` instead of
`MessageFormat`.

#### Fixes

- `ObservableList#unmodifiableViewOf` does no longer yield results with
incorrect `RandomAccess` hints.
- New `quitte-compose` module with Jetpack Compose extensions.
- Renamed listener methods for clarity and simpler use.
- Renamed `Observable#addListener(InvalidationListener)` to `addInvalidationListener`.
- Renamed `Observable#removeListener(InvalidationListener)` to `removeInvalidationListener`.
- Renamed `ObservableValue#addBoxedListener` to `addBoxedChangeListener`.
- Renamed `ObservableValue#removeBoxedListener` to `removeBoxedChangeListener`.
- Renamed `Observable${Type}Value#addListener(${Type}ChangeListener)` to `addChangeListener`.
- Renamed `Observable${Type}Value#removeListener(${Type}ChangeListener)` to `removeChangeListener`.
- Renamed `ObservableCollection#addListener(ChangeListener)` to `addChangeListener`.
- Renamed `ObservableCollection#removeListener(ChangeListener)` to `removeChangeListener`.

#### Breaking Changes

- Changed the return type of `I18nContext#getMessageFormat` from `MessageFormat` to
`Format` and renamed the method accordingly.
- Renamed listener related methods.

0 comments on commit 7eef959

Please sign in to comment.