Skip to content

Commit

Permalink
* update version numbers to use unsigned long
Browse files Browse the repository at this point in the history
* fix import.h accidentally including include-private.h
  • Loading branch information
mulle-nat committed Jan 11, 2024
1 parent cbc65d8 commit a554d1b
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ wilted/
mulle-template-composer-*
mulle-markdown-preview-*.html
build-*
coverage*.html
*.gcda
*.gcno
cola/wilted/
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ code. As a package **mulle-foundation-developer** is also a convenient way to
install mulle-sde and [mulle-clang](//github.com/mulle-cc/mulle-clang-project).



| Release Version | Release Notes
|-------------------------------------------------------|--------------
| ![Mulle kybernetiK tag](https://img.shields.io/github/tag//mulle-foundation-developer.svg?branch=release) [![Build Status](https://github.com//mulle-foundation-developer/workflows/CI/badge.svg?branch=release)](//github.com//mulle-foundation-developer/actions)| [RELEASENOTES](RELEASENOTES.md) |
| ![Mulle kybernetiK tag](https://img.shields.io/github/tag/MulleFoundation/mulle-foundation-developer.svg?branch=release) [![Build Status](https://github.com/MulleFoundation/mulle-foundation-developer/workflows/CI/badge.svg?branch=release)](//github.com/MulleFoundation/mulle-foundation-developer/actions) | [RELEASENOTES](RELEASENOTES.md) |



Expand Down Expand Up @@ -78,6 +79,6 @@ cmake --install build --config Release

## Author

[Nat!](https://mulle-kybernetik.com/weblog) for Mulle kybernetiK
[Nat!](https://mulle-kybernetik.com/weblog) for Mulle kybernetiK


Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* You can maintain this file with `mulle-project-version`
* version: major, minor, patch
*/
#define <|PROJECT_UPCASE_IDENTIFIER|>_VERSION ((0 << 20) | (7 << 8) | 56)
#define <|PROJECT_UPCASE_IDENTIFIER|>_VERSION ((0UL << 20) | (7 << 8) | 56)


static inline unsigned int <|PROJECT_IDENTIFIER|>_get_version_major( void)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* version: major, minor, patch
*/
#define <|PROJECT_UPCASE_IDENTIFIER|>_VERSION ((0 << 20) | (7 << 8) | 56)
#define <|PROJECT_UPCASE_IDENTIFIER|>_VERSION ((0UL << 20) | (7 << 8) | 56)


static inline unsigned int <|PROJECT_IDENTIFIER|>_get_version_major( void)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* version: major, minor, patch
*/
#define <|PROJECT_UPCASE_IDENTIFIER|>_VERSION ((0 << 20) | (7 << 8) | 56)
#define <|PROJECT_UPCASE_IDENTIFIER|>_VERSION ((0UL << 20) | (7 << 8) | 56)


static inline unsigned int <|PROJECT_IDENTIFIER|>_get_version_major( void)
Expand Down
2 changes: 1 addition & 1 deletion src/mulle-foundation/objc-demo/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.22.0
0.23.0
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
#ifdef __has_include
# if __has_include( "_<|PROJECT_NAME|>-include.h")
# include "include-private.h"
# include "include.h"
# endif
#endif

Expand Down
2 changes: 1 addition & 1 deletion src/mulle-foundation/objc/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.22.1
0.23.0

0 comments on commit a554d1b

Please sign in to comment.