Skip to content

Commit bdad674

Browse files
committed
Prepare for v1.5.1
1 parent a9a085d commit bdad674

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
### Fixed
1212

13-
- 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.
13+
- Previously, shortcuts referring to functional macros were object-like. To avoid nasty compilation errors, now they are function-like too:
14+
- `datatype(...)`
15+
- `record(...)`
16+
- `match(val)`
17+
- `MATCHES(val, tag)`
18+
- `matches(val, tag)`
19+
- `ifLet(val, tag, ...)`
20+
- `of(...)`
1421

1522
## [1.5.0] - 2021-08-27
1623

datatype99.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ SOFTWARE.
9494

9595
#define DATATYPE99_MAJOR 1
9696
#define DATATYPE99_MINOR 5
97-
#define DATATYPE99_PATCH 0
97+
#define DATATYPE99_PATCH 1
9898

9999
#define DATATYPE99_VERSION_COMPATIBLE(x, y, z) \
100100
(DATATYPE99_MAJOR == (x) && \

0 commit comments

Comments
 (0)