Skip to content

Commit b5ba76e

Browse files
committed
Release v1.6.0
1 parent cd99b4b commit b5ba76e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## unreleased
88

9+
## 1.6.0 - 2021-12-01
10+
911
### Added
1012

1113
- Add the root `CMakeLists.txt` to be able to use CMake with [`FetchContent`] or [`add_subdirectory`].

datatype99.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ SOFTWARE.
2929

3030
#include <metalang99.h>
3131

32-
#if !ML99_VERSION_COMPATIBLE(1, 9, 0)
33-
#error Please, update Metalang99 to v1.9.0 or later.
32+
#if !ML99_VERSION_COMPATIBLE(1, 13, 0)
33+
#error Please, update Metalang99 to v1.13.0 or later.
3434
#endif
3535

3636
#ifndef DATATYPE99_NO_ALIASES
@@ -98,8 +98,8 @@ SOFTWARE.
9898
<https://github.com/Hirrolot/datatype99/issues/12>. */
9999

100100
#define DATATYPE99_MAJOR 1
101-
#define DATATYPE99_MINOR 5
102-
#define DATATYPE99_PATCH 2
101+
#define DATATYPE99_MINOR 6
102+
#define DATATYPE99_PATCH 0
103103

104104
#define DATATYPE99_VERSION_COMPATIBLE(x, y, z) \
105105
(DATATYPE99_MAJOR == (x) && \

0 commit comments

Comments
 (0)