Skip to content

Commit

Permalink
* use UL versions now
Browse files Browse the repository at this point in the history
  • Loading branch information
mulle-nat committed Jan 12, 2024
1 parent 23622f0 commit 9dcdee1
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

# remove boring files
.mulle/** linguist-generated
.idea/** linguist-generated
.vscode/** linguist-generated
cmake/** linguist-generated

Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ var/
wilted/
mulle-template-composer-*
mulle-markdown-preview-*.html
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 @@ -17,9 +17,10 @@ These templates enable you to:
* tweak some compiler settings, like add -DNDEBUG for Release



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



Expand Down Expand Up @@ -104,7 +105,7 @@ 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,6 +7,6 @@

int main( int argc, char *argv[])
{
printf( "VfL Bochum %d\n", <|PROJECT_UPCASE_IDENTIFIER|>_VERSION);
printf( "VfL Bochum %ld\n", <|PROJECT_UPCASE_IDENTIFIER|>_VERSION);
return( 0);
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,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 @@ -10,7 +10,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-c/c-demo/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.0
0.17.0
File renamed without changes.
2 changes: 1 addition & 1 deletion src/mulle-c/c/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.1
0.17.0

0 comments on commit 9dcdee1

Please sign in to comment.