Skip to content

Commit

Permalink
Merge branch 'develop-v1.x' into master-v1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Dec 19, 2021
2 parents 3395036 + 3b7fed1 commit 3d4cf41
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "LwMEM",
"version": "1.6.0",
"version": "1.6.1",
"description": "Lightweight dynamic memory manager optimized for embedded systems",
"keywords": "lwmem, memory, dynamic, heap, malloc, calloc, realloc, free, lightweight, manager, embedded, stm32, win32",
"repository": {
Expand All @@ -24,11 +24,11 @@
"export": {
"exclude": [
".github",
"dev"
"dev",
"docs",
"**/.vs",
"**/Debug",
"build",
"build"
]
}
}
2 changes: 1 addition & 1 deletion lwmem/src/include/lwmem/lwmem.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwMEM - Lightweight dynamic memory manager library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.6.0
* Version: v1.6.1
*/
#ifndef LWMEM_HDR_H
#define LWMEM_HDR_H
Expand Down
2 changes: 1 addition & 1 deletion lwmem/src/include/lwmem/lwmem_opt.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwMEM - Lightweight dynamic memory manager library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.6.0
* Version: v1.6.1
*/
#ifndef LWMEM_HDR_OPT_H
#define LWMEM_HDR_OPT_H
Expand Down
2 changes: 1 addition & 1 deletion lwmem/src/include/lwmem/lwmem_opts_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwMEM - Lightweight dynamic memory manager library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.6.0
* Version: v1.6.1
*/
#ifndef LWMEM_HDR_OPTS_H
#define LWMEM_HDR_OPTS_H
Expand Down
2 changes: 1 addition & 1 deletion lwmem/src/include/system/lwmem_sys.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwMEM - Lightweight dynamic memory manager library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.6.0
* Version: v1.6.1
*/
#ifndef LWMEM_HDR_SYS_H
#define LWMEM_HDR_SYS_H
Expand Down
2 changes: 1 addition & 1 deletion lwmem/src/lwmem/lwmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwMEM - Lightweight dynamic memory manager library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.6.0
* Version: v1.6.1
*/
#include <limits.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion lwmem/src/system/lwmem_sys_cmsis_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwMEM - Lightweight dynamic memory manager library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.6.0
* Version: v1.6.1
*/
#include "system/lwmem_sys.h"

Expand Down
2 changes: 1 addition & 1 deletion lwmem/src/system/lwmem_sys_win32.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwMEM - Lightweight dynamic memory manager library.
*
* Author: Tilen MAJERLE <[email protected]>
* Version: v1.6.0
* Version: v1.6.1
*/
#include "system/lwmem_sys.h"

Expand Down

0 comments on commit 3d4cf41

Please sign in to comment.