Skip to content

Commit 4ad231c

Browse files
committed
Release v1.6.1
1 parent 760ffa2 commit 4ad231c

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## unreleased
88

9+
## 1.6.1 - 2021-12-09
10+
911
### Fixed
1012

11-
- Specify `C` as the project language in `CMakeLists.txt`. Previously, CMake detected C++ and required a C++ compiler in order to compiler the project.
13+
- Specify `C` as the project language in `CMakeLists.txt`. Previously, CMake detected C++ and required a C++ compiler to compile the project.
14+
- Require CMake v3.11.4.
1215

1316
## 1.6.0 - 2021-12-01
1417

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
cmake_minimum_required(VERSION 3.0.2)
1+
cmake_minimum_required(VERSION 3.11.4)
22
project(datatype99 LANGUAGES C)
33

44
include(FetchContent)
55

66
FetchContent_Declare(
77
metalang99
8-
URL https://github.com/Hirrolot/metalang99/archive/refs/tags/v1.13.0.tar.gz
8+
URL https://github.com/Hirrolot/metalang99/archive/refs/tags/v1.13.1.tar.gz
99
)
1010

1111
FetchContent_MakeAvailable(metalang99)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ add_subdirectory(datatype99)
5454
target_link_libraries(MyProject datatype99)
5555
```
5656

57-
In the latter case, I encourage you to download Datatype99 as a [Git submodule] to be able to update it with `git submodule update --remote` when necessary. Also, note that by default, Datatype99's `CMakeLists.txt` downloads Metalang99 [v1.13.0](https://github.com/Hirrolot/metalang99/releases/tag/v1.13.0) from the GitHub release archives; if you want to override this behaviour, you can do so by invoking [`FetchContent_Declare`] earlier.
57+
In the latter case, I encourage you to download Datatype99 as a [Git submodule] to be able to update it with `git submodule update --remote` when necessary. Also, note that by default, Datatype99's `CMakeLists.txt` downloads Metalang99 [v1.13.1](https://github.com/Hirrolot/metalang99/releases/tag/v1.13.1) from the GitHub release archives; if you want to override this behaviour, you can do so by invoking [`FetchContent_Declare`] earlier.
5858

5959
[Git submodule]: https://git-scm.com/book/en/v2/Git-Tools-Submodules
6060
[`FetchContent_Declare`]: https://cmake.org/cmake/help/latest/module/FetchContent.html#command:fetchcontent_declare

datatype99.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ SOFTWARE.
2929

3030
#include <metalang99.h>
3131

32-
#if !ML99_VERSION_COMPATIBLE(1, 13, 0)
33-
#error Please, update Metalang99 to v1.13.0 or later.
32+
#if !ML99_VERSION_COMPATIBLE(1, 13, 1)
33+
#error Please, update Metalang99 to v1.13.1 or later.
3434
#endif
3535

3636
#ifndef DATATYPE99_NO_ALIASES
@@ -99,7 +99,7 @@ SOFTWARE.
9999

100100
#define DATATYPE99_MAJOR 1
101101
#define DATATYPE99_MINOR 6
102-
#define DATATYPE99_PATCH 0
102+
#define DATATYPE99_PATCH 1
103103

104104
#define DATATYPE99_VERSION_COMPATIBLE(x, y, z) \
105105
(DATATYPE99_MAJOR == (x) && \

0 commit comments

Comments
 (0)