Skip to content

Commit 6d3fa6a

Browse files
committed
* adapt to version change in stacktrace
1 parent d205799 commit 6d3fa6a

File tree

10 files changed

+22
-13
lines changed

10 files changed

+22
-13
lines changed

.mulle/share/env/environment-plugin.sh

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.mulle/share/env/version

+1-1
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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required( VERSION 3.14)
22

3-
project( mulle-testallocator VERSION 5.1.0 LANGUAGES C)
3+
project( mulle-testallocator VERSION 5.1.1 LANGUAGES C)
44

55

66
### mulle-sde environment

RELEASENOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 5.1.1
2+
3+
* adapt to version change in stacktrace
4+
15
## 5.1.0
26

37

cmake/share/InstallRpath.cmake

+9-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/mulle-testallocator.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
#include "mulle-testallocator-struct.h"
4343

44-
#define MULLE__TESTALLOCATOR_VERSION ((5UL << 20) | (1 << 8) | 0)
44+
#define MULLE__TESTALLOCATOR_VERSION ((5UL << 20) | (1 << 8) | 1)
4545

4646
MULLE__TESTALLOCATOR_GLOBAL struct _mulle_testallocator_config mulle_testallocator_config;
4747
MULLE__TESTALLOCATOR_GLOBAL struct mulle_allocator mulle_testallocator;

src/reflect/_mulle-testallocator-versioncheck.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@
5252

5353
#if defined( MULLE__STACKTRACE_VERSION)
5454
# ifndef MULLE__STACKTRACE_VERSION_MIN
55-
# define MULLE__STACKTRACE_VERSION_MIN ((0UL << 20) | (2 << 8) | 9)
55+
# define MULLE__STACKTRACE_VERSION_MIN ((0UL << 20) | (3 << 8) | 0)
5656
# endif
5757
# ifndef MULLE__STACKTRACE_VERSION_MAX
58-
# define MULLE__STACKTRACE_VERSION_MAX ((0UL << 20) | (3 << 8) | 0)
58+
# define MULLE__STACKTRACE_VERSION_MAX ((0UL << 20) | (4 << 8) | 0)
5959
# endif
6060
# if MULLE__STACKTRACE_VERSION < MULLE__STACKTRACE_VERSION_MIN
6161
# error "mulle-stacktrace is too old"

test/.mulle/share/env/environment-plugin.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ export MULLE_SOURCETREE_SYMLINK='YES'
2222
#
2323
#
2424
#
25-
export MULLE_SDE_INSTALLED_VERSION="3.2.0"
25+
export MULLE_SDE_INSTALLED_VERSION="3.2.2"
2626

2727

test/.mulle/share/env/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.3.0
1+
5.3.1

0 commit comments

Comments
 (0)