From 6639e6860b21e2a3e4ae3f67e9e6afb4c5681251 Mon Sep 17 00:00:00 2001 From: Krylov Yaroslav Date: Sun, 10 Sep 2023 19:19:09 +0400 Subject: [PATCH] version 0.16.0 --- CHANGELOG.md | 13 +++++++++++++ include/ureact/version.hpp | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 234c3ad..02de904 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 `` and `` 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 `` in `` +- #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) diff --git a/include/ureact/version.hpp b/include/ureact/version.hpp index 449ce00..4c05a88 100644 --- a/include/ureact/version.hpp +++ b/include/ureact/version.hpp @@ -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 )