File tree Expand file tree Collapse file tree 8 files changed +44
-11
lines changed Expand file tree Collapse file tree 8 files changed +44
-11
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.1)
22
33project (Zero
4- VERSION 0.1 .0
4+ VERSION 0.2 .0
55 LANGUAGES C)
66
77string (TOLOWER ${PROJECT_NAME} ZR_PROJECT_NAME)
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ namely fixed-width integer types and variadic macros.
2424
2525| library | description | latest version | changelog |
2626| ---------| -------------| ----------------| -----------|
27- ** [ allocator.h] ( include/zero/allocator.h ) ** | Aligned and non-aligned wrappers of malloc/realloc/free | 0.1.0 | [ changelog] ( changelogs/allocator.md )
28- ** [ logger.h] ( include/zero/logger.h ) ** | Simple logger with different log levels and colouring | 0.1.0 | [ changelog] ( changelogs/logger.md )
27+ ** [ allocator.h] ( include/zero/allocator.h ) ** | Aligned and non-aligned wrappers of malloc/realloc/free | 0.1.1 | [ changelog] ( changelogs/allocator.md )
28+ ** [ logger.h] ( include/zero/logger.h ) ** | Simple logger with different log levels and colouring | 0.1.1 | [ changelog] ( changelogs/logger.md )
2929** [ timer.h] ( include/zero/timer.h ) ** | High-resolution real time clock and CPU (user/system) clocks | 0.1.0 | [ changelog] ( changelogs/timer.md )
3030
3131
Original file line number Diff line number Diff line change @@ -4,10 +4,27 @@ Changelog For `zero/allocator.h`
44Version numbers comply with the [ Sementic Versioning Specification (SemVer)] .
55
66
7- v0.1.0 (2018-01-20)
8- -------------------
7+ ## [ v0.1.1] (2018-03-13)
8+
9+ ## Added
10+
11+ * Make macros definable for this module only, overriding the project-level ones.
12+
13+
14+ ### Changed
15+
16+ * Rewrite the power of two check.
17+ * Guard against warnings from ` -Wunused-function ` .
18+ * Make the architecture macros private.
19+ * Make static assertion messages private types.
20+ * Wrap all private code into the module's namespace.
21+ * Apply minor internal changes.
22+
23+
24+ ## v0.1.0 (2018-01-20)
925
1026* Initial release.
1127
1228
1329[ Sementic Versioning Specification (SemVer) ] : https://semver.org
30+ [ v0.1.1 ] : https://github.com/christophercrouzet/zero/compare/allocator-v0.1.0...allocator-v0.1.1
Original file line number Diff line number Diff line change @@ -4,10 +4,26 @@ Changelog For `zero/logger.h`
44Version numbers comply with the [ Sementic Versioning Specification (SemVer)] .
55
66
7- v0.1.0 (2018-01-20)
8- -------------------
7+ ## [ v0.1.1] (2018-03-13)
8+
9+ ## Added
10+
11+ * Make macros definable for this module only, overriding the project-level ones.
12+
13+
14+ ### Changed
15+
16+ * Check for the POSIX.1 feature set.
17+ * Guard against warnings from ` -Wunused-function ` .
18+ * Guard against warnings from ` -Wundef ` .
19+ * Wrap all private code into the module's namespace.
20+ * Apply minor internal changes.
21+
22+
23+ ## v0.1.0 (2018-01-20)
924
1025* Initial release.
1126
1227
1328[ Sementic Versioning Specification (SemVer) ] : https://semver.org
29+ [ v0.1.1 ] : https://github.com/christophercrouzet/zero/compare/logger-v0.1.0...logger-v0.1.1
Original file line number Diff line number Diff line change 2727
2828#define ZR_ALLOCATOR_MAJOR_VERSION 0
2929#define ZR_ALLOCATOR_MINOR_VERSION 1
30- #define ZR_ALLOCATOR_PATCH_VERSION 0
30+ #define ZR_ALLOCATOR_PATCH_VERSION 1
3131
3232#ifndef ZRP_ARCH_DEFINED
3333#define ZRP_ARCH_DEFINED
Original file line number Diff line number Diff line change 2929
3030#define ZR_LOGGER_MAJOR_VERSION 0
3131#define ZR_LOGGER_MINOR_VERSION 1
32- #define ZR_LOGGER_PATCH_VERSION 0
32+ #define ZR_LOGGER_PATCH_VERSION 1
3333
3434#ifndef ZRP_PLATFORM_DEFINED
3535#define ZRP_PLATFORM_DEFINED
Original file line number Diff line number Diff line change 55
66#define ZR_ALLOCATOR_MAJOR_VERSION 0
77#define ZR_ALLOCATOR_MINOR_VERSION 1
8- #define ZR_ALLOCATOR_PATCH_VERSION 0
8+ #define ZR_ALLOCATOR_PATCH_VERSION 1
99
1010/* @include "partials/environment.h" */
1111/* @include "partials/types.h" */
Original file line number Diff line number Diff line change 77
88#define ZR_LOGGER_MAJOR_VERSION 0
99#define ZR_LOGGER_MINOR_VERSION 1
10- #define ZR_LOGGER_PATCH_VERSION 0
10+ #define ZR_LOGGER_PATCH_VERSION 1
1111
1212/* @include "partials/platform.h" */
1313/* @include "partials/unused.h" */
You can’t perform that action at this time.
0 commit comments