Skip to content

Commit 4f04680

Browse files
author
Christopher Crouzet
committed
Bump versions
1 parent 9dfb4aa commit 4f04680

File tree

8 files changed

+44
-11
lines changed

8 files changed

+44
-11
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.1)
22

33
project(Zero
4-
VERSION 0.1.0
4+
VERSION 0.2.0
55
LANGUAGES C)
66

77
string(TOLOWER ${PROJECT_NAME} ZR_PROJECT_NAME)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

changelogs/allocator.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,27 @@ Changelog For `zero/allocator.h`
44
Version 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

changelogs/logger.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,26 @@ Changelog For `zero/logger.h`
44
Version 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

include/zero/allocator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
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

include/zero/logger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
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

src/allocator.h.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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" */

src/logger.h.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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" */

0 commit comments

Comments
 (0)