Skip to content

Commit

Permalink
versioncheck commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mulle-nat committed Dec 11, 2024
1 parent dd0c77c commit ac0646b
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .mulle/share/env/environment-plugin.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .mulle/share/env/version

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .mulle/share/sde/version/mulle-sde/cmake

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required( VERSION 3.14)

project( mulle-allocator VERSION 7.0.0 LANGUAGES C)
project( mulle-allocator VERSION 7.0.1 LANGUAGES C)


### mulle-sde environment
Expand Down Expand Up @@ -86,6 +86,3 @@ if( LINK_PHASE)
endif()

include( FinalOutput OPTIONAL)



2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

| Release Version | Release Notes
|-------------------------------------------------------|--------------
| ![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) |
| ![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) |


## API
Expand Down
4 changes: 4 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 7.0.1

Various small improvements

# 7.0.0


Expand Down
2 changes: 1 addition & 1 deletion clib.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "mulle-allocator",
"version" : "7.0.0",
"version" : "7.0.1",
"description" : "🔄 Flexible C memory allocation scheme",
"keywords" : [],
"license" : "BSD-3-Clause",
Expand Down
13 changes: 9 additions & 4 deletions cmake/share/InstallRpath.cmake

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/mulle-allocator.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
#endif


#define MULLE__ALLOCATOR_VERSION ((7UL << 20) | (0 << 8) | 0)
#define MULLE__ALLOCATOR_VERSION ((7UL << 20) | (0 << 8) | 1)


/**
Expand Down
2 changes: 1 addition & 1 deletion src/reflect/_mulle-allocator-versioncheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#if defined( MULLE__C11_VERSION)
# ifndef MULLE__C11_VERSION_MIN
# define MULLE__C11_VERSION_MIN ((4UL << 20) | (5 << 8) | 0)
# define MULLE__C11_VERSION_MIN ((4UL << 20) | (6 << 8) | 0)
# endif
# ifndef MULLE__C11_VERSION_MAX
# define MULLE__C11_VERSION_MAX ((5UL << 20) | (0 << 8) | 0)
Expand Down
2 changes: 1 addition & 1 deletion test/.mulle/share/env/environment-plugin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ export MULLE_SOURCETREE_SYMLINK='YES'
#
#
#
export MULLE_SDE_INSTALLED_VERSION="3.2.0"
export MULLE_SDE_INSTALLED_VERSION="3.2.2"


2 changes: 1 addition & 1 deletion test/.mulle/share/env/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.3.0
5.3.1

0 comments on commit ac0646b

Please sign in to comment.