Skip to content

Commit

Permalink
Prepare for v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hirrolot committed Apr 24, 2021
1 parent 987f3c3 commit 9ac6f96
Show file tree
Hide file tree
Showing 3 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.1.0] - 2021-04-24

### Added

- A mechanism for deriving: `datatype` now can be specified with `derive(...)`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

## Installation

1. Download Datatype99 and [Metalang99] (minimum supported version -- [1.0.0](https://github.com/Hirrolot/metalang99/releases/tag/v1.0.0)).
1. Download Datatype99 and [Metalang99] (minimum supported version -- [1.1.0](https://github.com/Hirrolot/metalang99/releases/tag/v1.1.0)).
2. Add `datatype99` and `metalang99/include` to your include paths.
3. `#include <datatype99.h>` beforehand.

Expand Down
6 changes: 3 additions & 3 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_MAJOR != 1
#error "Please, update Metalang99 to v1.0.0 or later"
#if ML99_MAJOR != 1 && ML99_MINOR < 1
#error "Please, update Metalang99 to v1.1.0 or later"
#endif

#ifndef DATATYPE99_NO_ALIASES
Expand Down Expand Up @@ -83,7 +83,7 @@ SOFTWARE.
#define DATATYPE99_DERIVE_dummy_IMPL(...) ML99_empty()

#define DATATYPE99_MAJOR 1
#define DATATYPE99_MINOR 0
#define DATATYPE99_MINOR 1
#define DATATYPE99_PATCH 0

// } (Various public stuff)
Expand Down

0 comments on commit 9ac6f96

Please sign in to comment.