From d2db8af2a46c79f8dc75759019fba487948e9442 Mon Sep 17 00:00:00 2001 From: wqking Date: Thu, 21 Sep 2023 08:06:57 +0800 Subject: [PATCH] Bump version to 0.1.3 --- CMakeLists.txt | 2 +- readme.md | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ba68a53..d04f6ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -project(eventpp VERSION 0.1.2) +project(eventpp VERSION 0.1.3) add_library(eventpp INTERFACE) set(CMAKE_CXX_STANDARD 11) diff --git a/readme.md b/readme.md index bf4cd65..e96ce4d 100644 --- a/readme.md +++ b/readme.md @@ -3,7 +3,7 @@ - [eventpp -- C++ library for event dispatcher and callback list](#eventpp----c-library-for-event-dispatcher-and-callback-list) - [Facts and features](#facts-and-features) - [License](#license) - - [Version 0.1.2](#version-012) + - [Version 0.1.3](#version-013) - [Source code](#source-code) - [Supported compilers](#supported-compilers) - [C++ standard requirements](#c-standard-requirements) @@ -53,7 +53,7 @@ eventpp is a C++ event library for callbacks, event dispatcher, and event queue. Apache License, Version 2.0 -## Version 0.1.2 +## Version 0.1.3 The master branch is usable and stable. There are some releases on Github, but usually the releases are far behind the latest code. @@ -268,6 +268,10 @@ Thanking to C++11, now it's quite easy to write a reusable event library with be ## Change log +**Version 0.1.3** Sep 21, 2023 +Added utility class AnyData. +Small bugs fixes and improvements. + **Version 0.1.2** Mar 11, 2022 Bug fix. Added more unit tests.