Skip to content

Commit

Permalink
Release v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hirrolot committed Dec 1, 2021
1 parent 8c3b4d8 commit f5d8c2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## unreleased

## 1.6.0 - 2021-12-01

### Added

- Add the root `CMakeLists.txt` to be able to use CMake with [`FetchContent`] or [`add_subdirectory`].
Expand Down
8 changes: 4 additions & 4 deletions datatype99.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ SOFTWARE.

#include <metalang99.h>

#if !ML99_VERSION_COMPATIBLE(1, 9, 0)
#error Please, update Metalang99 to v1.9.0 or later.
#if !ML99_VERSION_COMPATIBLE(1, 13, 0)
#error Please, update Metalang99 to v1.13.0 or later.
#endif

#ifndef DATATYPE99_NO_ALIASES
Expand Down Expand Up @@ -98,8 +98,8 @@ SOFTWARE.
<https://github.com/Hirrolot/datatype99/issues/12>. */

#define DATATYPE99_MAJOR 1
#define DATATYPE99_MINOR 5
#define DATATYPE99_PATCH 2
#define DATATYPE99_MINOR 6
#define DATATYPE99_PATCH 0

#define DATATYPE99_VERSION_COMPATIBLE(x, y, z) \
(DATATYPE99_MAJOR == (x) && \
Expand Down

0 comments on commit f5d8c2d

Please sign in to comment.