Skip to content

Commit

Permalink
Prepare for v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hirrolot committed Oct 6, 2021
1 parent 88f2d59 commit f4fbffd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion datatype99.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) && \
Expand Down

0 comments on commit f4fbffd

Please sign in to comment.