Skip to content

Commit

Permalink
Set version 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Dec 30, 2024
1 parent 9f5e714 commit 1653247
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 12 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## Develop

- Fix the wrong variable to reduce the size of the region
## v2.2.1

- Fix the wrong variable to reduce the size of the region in case of unaligned address or size

## v2.2.0

Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "LwMEM",
"version": "2.2.0",
"version": "2.2.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 Down
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 <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.1
*/
#ifndef LWMEM_HDR_H
#define LWMEM_HDR_H
Expand Down
2 changes: 1 addition & 1 deletion lwmem/src/include/lwmem/lwmem.hpp
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 <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.1
*/
#ifndef LWMEM_HDR_HPP
#define LWMEM_HDR_HPP
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 <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.1
*/
#ifndef LWMEM_OPT_HDR_H
#define LWMEM_OPT_HDR_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 <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.1
*/
#ifndef LWMEM_OPTS_HDR_H
#define LWMEM_OPTS_HDR_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 <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.1
*/
#ifndef LWMEM_SYS_HDR_H
#define LWMEM_SYS_HDR_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 <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.1
*/
#include "lwmem/lwmem.h"
#include <limits.h>
Expand Down
2 changes: 1 addition & 1 deletion lwmem/src/lwmem/lwmem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
* This file is part of LwMEM - Lightweight dynamic memory manager library.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.1
*/
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 <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.1
*/
#include "system/lwmem_sys.h"

Expand Down
2 changes: 1 addition & 1 deletion lwmem/src/system/lwmem_sys_threadx.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 <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.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 <tilen@majerle.eu>
* Version: v2.2.0
* Version: v2.2.1
*/
#include "system/lwmem_sys.h"

Expand Down

0 comments on commit 1653247

Please # to comment.