1
0
mirror of https://github.com/wqking/eventpp.git synced 2024-12-25 23:30:49 +08:00

Bump version to 0.1.3

This commit is contained in:
wqking 2023-09-21 08:06:57 +08:00
parent c1e2a289b4
commit d2db8af2a4
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5) cmake_minimum_required(VERSION 3.5)
project(eventpp VERSION 0.1.2) project(eventpp VERSION 0.1.3)
add_library(eventpp INTERFACE) add_library(eventpp INTERFACE)
set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD 11)

View File

@ -3,7 +3,7 @@
- [eventpp -- C++ library for event dispatcher and callback list](#eventpp----c-library-for-event-dispatcher-and-callback-list) - [eventpp -- C++ library for event dispatcher and callback list](#eventpp----c-library-for-event-dispatcher-and-callback-list)
- [Facts and features](#facts-and-features) - [Facts and features](#facts-and-features)
- [License](#license) - [License](#license)
- [Version 0.1.2](#version-012) - [Version 0.1.3](#version-013)
- [Source code](#source-code) - [Source code](#source-code)
- [Supported compilers](#supported-compilers) - [Supported compilers](#supported-compilers)
- [C++ standard requirements](#c-standard-requirements) - [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 Apache License, Version 2.0
## Version 0.1.2 ## Version 0.1.3
The master branch is usable and stable. The master branch is usable and stable.
There are some releases on Github, but usually the releases are far behind the latest code. 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 ## 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 **Version 0.1.2** Mar 11, 2022
Bug fix. Bug fix.
Added more unit tests. Added more unit tests.