Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Crouzet committed Mar 13, 2018
1 parent 9dfb4aa commit 4f04680
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.1)

project(Zero
VERSION 0.1.0
VERSION 0.2.0
LANGUAGES C)

string(TOLOWER ${PROJECT_NAME} ZR_PROJECT_NAME)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ namely fixed-width integer types and variadic macros.

| library | description | latest version | changelog |
|---------|-------------|----------------|-----------|
**[allocator.h](include/zero/allocator.h)** | Aligned and non-aligned wrappers of malloc/realloc/free | 0.1.0 | [changelog](changelogs/allocator.md)
**[logger.h](include/zero/logger.h)** | Simple logger with different log levels and colouring | 0.1.0 | [changelog](changelogs/logger.md)
**[allocator.h](include/zero/allocator.h)** | Aligned and non-aligned wrappers of malloc/realloc/free | 0.1.1 | [changelog](changelogs/allocator.md)
**[logger.h](include/zero/logger.h)** | Simple logger with different log levels and colouring | 0.1.1 | [changelog](changelogs/logger.md)
**[timer.h](include/zero/timer.h)** | High-resolution real time clock and CPU (user/system) clocks | 0.1.0 | [changelog](changelogs/timer.md)


Expand Down
21 changes: 19 additions & 2 deletions changelogs/allocator.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,27 @@ Changelog For `zero/allocator.h`
Version numbers comply with the [Sementic Versioning Specification (SemVer)].


v0.1.0 (2018-01-20)
-------------------
## [v0.1.1] (2018-03-13)

## Added

* Make macros definable for this module only, overriding the project-level ones.


### Changed

* Rewrite the power of two check.
* Guard against warnings from `-Wunused-function`.
* Make the architecture macros private.
* Make static assertion messages private types.
* Wrap all private code into the module's namespace.
* Apply minor internal changes.


## v0.1.0 (2018-01-20)

* Initial release.


[Sementic Versioning Specification (SemVer)]: https://semver.org
[v0.1.1]: https://github.com/christophercrouzet/zero/compare/allocator-v0.1.0...allocator-v0.1.1
20 changes: 18 additions & 2 deletions changelogs/logger.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,26 @@ Changelog For `zero/logger.h`
Version numbers comply with the [Sementic Versioning Specification (SemVer)].


v0.1.0 (2018-01-20)
-------------------
## [v0.1.1] (2018-03-13)

## Added

* Make macros definable for this module only, overriding the project-level ones.


### Changed

* Check for the POSIX.1 feature set.
* Guard against warnings from `-Wunused-function`.
* Guard against warnings from `-Wundef`.
* Wrap all private code into the module's namespace.
* Apply minor internal changes.


## v0.1.0 (2018-01-20)

* Initial release.


[Sementic Versioning Specification (SemVer)]: https://semver.org
[v0.1.1]: https://github.com/christophercrouzet/zero/compare/logger-v0.1.0...logger-v0.1.1
2 changes: 1 addition & 1 deletion include/zero/allocator.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#define ZR_ALLOCATOR_MAJOR_VERSION 0
#define ZR_ALLOCATOR_MINOR_VERSION 1
#define ZR_ALLOCATOR_PATCH_VERSION 0
#define ZR_ALLOCATOR_PATCH_VERSION 1

#ifndef ZRP_ARCH_DEFINED
#define ZRP_ARCH_DEFINED
Expand Down
2 changes: 1 addition & 1 deletion include/zero/logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

#define ZR_LOGGER_MAJOR_VERSION 0
#define ZR_LOGGER_MINOR_VERSION 1
#define ZR_LOGGER_PATCH_VERSION 0
#define ZR_LOGGER_PATCH_VERSION 1

#ifndef ZRP_PLATFORM_DEFINED
#define ZRP_PLATFORM_DEFINED
Expand Down
2 changes: 1 addition & 1 deletion src/allocator.h.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#define ZR_ALLOCATOR_MAJOR_VERSION 0
#define ZR_ALLOCATOR_MINOR_VERSION 1
#define ZR_ALLOCATOR_PATCH_VERSION 0
#define ZR_ALLOCATOR_PATCH_VERSION 1

/* @include "partials/environment.h" */
/* @include "partials/types.h" */
Expand Down
2 changes: 1 addition & 1 deletion src/logger.h.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#define ZR_LOGGER_MAJOR_VERSION 0
#define ZR_LOGGER_MINOR_VERSION 1
#define ZR_LOGGER_PATCH_VERSION 0
#define ZR_LOGGER_PATCH_VERSION 1

/* @include "partials/platform.h" */
/* @include "partials/unused.h" */
Expand Down

0 comments on commit 4f04680

Please sign in to comment.