Skip to content

Commit ac0646b

Browse files
committed
versioncheck commit
1 parent dd0c77c commit ac0646b

File tree

12 files changed

+23
-17
lines changed

12 files changed

+23
-17
lines changed

β€Ž.mulle/share/env/environment-plugin.shβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.mulle/share/env/versionβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.mulle/share/sde/version/mulle-sde/cmakeβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽCMakeLists.txtβ€Ž

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required( VERSION 3.14)
22

3-
project( mulle-allocator VERSION 7.0.0 LANGUAGES C)
3+
project( mulle-allocator VERSION 7.0.1 LANGUAGES C)
44

55

66
### mulle-sde environment
@@ -86,6 +86,3 @@ if( LINK_PHASE)
8686
endif()
8787

8888
include( FinalOutput OPTIONAL)
89-
90-
91-

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
| Release Version | Release Notes
2020
|-------------------------------------------------------|--------------
21-
| ![Mulle kybernetiK tag](https://img.shields.io/github/tag/mulle-c/mulle-allocator.svg?branch=master) [![Build Status](https://github.com/mulle-c/mulle-allocator/workflows/CI/badge.svg?branch=master)](//github.com/mulle-c/mulle-allocator/actions) ![Coverage](https://img.shields.io/badge/coverage-100%25%C2%A0-2acf49) | [RELEASENOTES](RELEASENOTES.md) |
21+
| ![Mulle kybernetiK tag](https://img.shields.io/github/tag/mulle-c/mulle-allocator.svg) [![Build Status](https://github.com/mulle-c/mulle-allocator/workflows/CI/badge.svg)](//github.com/mulle-c/mulle-allocator/actions) ![Coverage](https://img.shields.io/badge/coverage-100%25%C2%A0-2acf49) | [RELEASENOTES](RELEASENOTES.md) |
2222

2323

2424
## API

β€ŽRELEASENOTES.mdβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 7.0.1
2+
3+
Various small improvements
4+
15
# 7.0.0
26

37

β€Žclib.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "mulle-allocator",
3-
"version" : "7.0.0",
3+
"version" : "7.0.1",
44
"description" : "πŸ”„ Flexible C memory allocation scheme",
55
"keywords" : [],
66
"license" : "BSD-3-Clause",

β€Žcmake/share/InstallRpath.cmakeβ€Ž

Lines changed: 9 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žsrc/mulle-allocator.hβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
#endif
6060

6161

62-
#define MULLE__ALLOCATOR_VERSION ((7UL << 20) | (0 << 8) | 0)
62+
#define MULLE__ALLOCATOR_VERSION ((7UL << 20) | (0 << 8) | 1)
6363

6464

6565
/**

β€Žsrc/reflect/_mulle-allocator-versioncheck.hβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#if defined( MULLE__C11_VERSION)
99
# ifndef MULLE__C11_VERSION_MIN
10-
# define MULLE__C11_VERSION_MIN ((4UL << 20) | (5 << 8) | 0)
10+
# define MULLE__C11_VERSION_MIN ((4UL << 20) | (6 << 8) | 0)
1111
# endif
1212
# ifndef MULLE__C11_VERSION_MAX
1313
# define MULLE__C11_VERSION_MAX ((5UL << 20) | (0 << 8) | 0)

0 commit comments

Comments
Β (0)