Skip to content

Commit

Permalink
version 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YarikTH committed Sep 10, 2023
1 parent 98b2b58 commit 6639e68
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file. This
project adheres to [Semantic Versioning](http://semver.org/).

## [0.16.0](https://github.com/YarikTH/ureact/releases/tag/0.16.0) (2023-09-10)

[Full Changelog](https://github.com/YarikTH/ureact/compare/0.15.0...0.16.0)

- BREAKING! #126 Improve compile times
- Inclusion of `<functional>` and `<iterator>` hurts compilation times, so
their usage is removed for core headers (all, but adaptor).
- allow only functors in var_signal::modify() (any invokable were valid
before). It allows not including `<functional>` in `<ureact/signal.hpp>`
- #134 Get rid of issue_template.md
- #136 Work around broken `ureact::merge` with latest MSVC in c++20 mode
- #133 Fix MSVC's /W4 warnings

## [0.15.0](https://github.com/YarikTH/ureact/releases/tag/0.15.0) (2023-08-18)

[Full Changelog](https://github.com/YarikTH/ureact/compare/0.14.0...0.15.0)
Expand Down
2 changes: 1 addition & 1 deletion include/ureact/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#define UREACT_VERSION_MAJOR 0
#define UREACT_VERSION_MINOR 16
#define UREACT_VERSION_PATCH 0
#define UREACT_VERSION_STR "0.16.0 wip"
#define UREACT_VERSION_STR "0.16.0"

#define UREACT_VERSION \
( UREACT_VERSION_MAJOR * 10000 + UREACT_VERSION_MINOR * 100 + UREACT_VERSION_PATCH )
Expand Down

0 comments on commit 6639e68

Please sign in to comment.