From f4fbffdbee852bfb7ac56de490dbdf0706473897 Mon Sep 17 00:00:00 2001 From: Hirrolot Date: Wed, 6 Oct 2021 21:43:24 +0600 Subject: [PATCH] Prepare for v1.5.1 --- CHANGELOG.md | 9 ++++++++- datatype99.h | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ca603c..93114d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - - Previously, shortcuts referring to functional macros were object-like (e.g., `match` or `of`). To avoid nasty compilation errors, now they are function-like too. + - Previously, shortcuts referring to functional macros were object-like. To avoid nasty compilation errors, now they are function-like too: + - `datatype(...)` + - `record(...)` + - `match(val)` + - `MATCHES(val, tag)` + - `matches(val, tag)` + - `ifLet(val, tag, ...)` + - `of(...)` ## [1.5.0] - 2021-08-27 diff --git a/datatype99.h b/datatype99.h index 96ead77..ec834c9 100644 --- a/datatype99.h +++ b/datatype99.h @@ -94,7 +94,7 @@ SOFTWARE. #define DATATYPE99_MAJOR 1 #define DATATYPE99_MINOR 5 -#define DATATYPE99_PATCH 0 +#define DATATYPE99_PATCH 1 #define DATATYPE99_VERSION_COMPATIBLE(x, y, z) \ (DATATYPE99_MAJOR == (x) && \