Skip to content

Commit

Permalink
Set version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Jan 31, 2023
1 parent 4091da9 commit 2bf5471
Show file tree
Hide file tree
Showing 19 changed files with 52 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.0",
"version": "2.1.0",
"tasks": [
{
"type": "cppbuild",
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

## Develop

## v2.1.0

- Split CMakeLists.txt files between library and executable
- Add C++ wrapper functions
- Change license year to 2022
- Update code style with astyle
- Fix wrong length function usage
- Add `.clang-format` draft

## v2.0.0
Expand Down
4 changes: 2 additions & 2 deletions examples/lib/FreeRTOS/CMSIS_RTOS_V2/cmsis_os.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* --------------------------------------------------------------------------
* Portions Copyright © 2017 STMicroelectronics International N.V. All rights reserved.
* Portions Copyright 2017 STMicroelectronics International N.V. All rights reserved.
* Portions Copyright (c) 2013-2017 ARM Limited. All rights reserved.
* --------------------------------------------------------------------------
*
Expand Down Expand Up @@ -37,7 +37,7 @@
* Control functions for short timeouts in microsecond resolution:
* Added: osKernelSysTick, osKernelSysTickFrequency, osKernelSysTickMicroSec
* Removed: osSignalGet
* Version 2.0.0
* Version 2.1.0
* OS objects creation without macros (dynamic creation and resource allocation):
* - added: osXxxxNew functions which replace osXxxxCreate
* - added: osXxxxAttr_t structures
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/* Will get automatically detected if STM32CubeIDE is installed to default directory
or it can be manually provided if necessary.. */
//"serverpath": "c:\\ST\\STM32CubeIDE_1.7.0\\STM32CubeIDE\\plugins\\com.st.stm32cube.ide.mcu.externaltools.stlink-gdb-server.win32_2.0.100.202109301221\\tools\\bin\\ST-LINK_gdbserver.exe",
//"armToolchainPath": "c:\\ST\\STM32CubeIDE_1.7.0\\STM32CubeIDE\\plugins\\com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.win32_2.0.0.202105311346\\tools\\bin",
//"armToolchainPath": "c:\\ST\\STM32CubeIDE_1.7.0\\STM32CubeIDE\\plugins\\com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.win32_2.1.0.202105311346\\tools\\bin",
//"stm32cubeprogrammer": "c:\\Program Files\\STMicroelectronics\\STM32Cube\\STM32CubeProgrammer\\bin",

/* If you use external loader, add additional arguments */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.0",
"version": "2.1.0",
"tasks": [
{
"type": "cppbuild",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/* Will get automatically detected if STM32CubeIDE is installed to default directory
or it can be manually provided if necessary.. */
//"serverpath": "c:\\ST\\STM32CubeIDE_1.7.0\\STM32CubeIDE\\plugins\\com.st.stm32cube.ide.mcu.externaltools.stlink-gdb-server.win32_2.0.100.202109301221\\tools\\bin\\ST-LINK_gdbserver.exe",
//"armToolchainPath": "c:\\ST\\STM32CubeIDE_1.7.0\\STM32CubeIDE\\plugins\\com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.win32_2.0.0.202105311346\\tools\\bin",
//"armToolchainPath": "c:\\ST\\STM32CubeIDE_1.7.0\\STM32CubeIDE\\plugins\\com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.9-2020-q2-update.win32_2.1.0.202105311346\\tools\\bin",
//"stm32cubeprogrammer": "c:\\Program Files\\STMicroelectronics\\STM32Cube\\STM32CubeProgrammer\\bin",

/* If you use external loader, add additional arguments */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.0",
"version": "2.1.0",
"tasks": [
{
"type": "cppbuild",
Expand Down
2 changes: 1 addition & 1 deletion examples/win32/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.0",
"version": "2.1.0",
"tasks": [
{
"type": "cppbuild",
Expand Down
64 changes: 31 additions & 33 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,33 @@
{
"name": "LwMEM",
"version": "2.0.0",
"description": "Lightweight dynamic memory manager optimized for embedded systems",
"keywords": "lwmem, memory, dynamic, heap, malloc, calloc, realloc, free, lightweight, manager, embedded, stm32, win32",
"repository": {
"type": "git",
"url": "https://github.com/MaJerle/lwmem.git"
},
"authors": [
{
"name": "Tilen Majerle",
"email": "tilen@majerle.eu",
"url": "https://majerle.eu"
}
],
"license": "MIT",
"homepage": "https://github.com/MaJerle/lwmem",
"dependencies": {

},
"frameworks": "*",
"platforms": "*",
"export": {
"exclude": [
".github",
"dev",
"docs",
"**/.vs",
"**/Debug",
"build",
"**/build"
]
}
"name": "LwMEM",
"version": "2.1.0",
"description": "Lightweight dynamic memory manager optimized for embedded systems",
"keywords": "lwmem, memory, dynamic, heap, malloc, calloc, realloc, free, lightweight, manager, embedded, stm32, win32",
"repository": {
"type": "git",
"url": "https://github.com/MaJerle/lwmem.git"
},
"authors": [
{
"name": "Tilen Majerle",
"email": "tilen@majerle.eu",
"url": "https://majerle.eu"
}
],
"license": "MIT",
"homepage": "https://github.com/MaJerle/lwmem",
"dependencies": {},
"frameworks": "*",
"platforms": "*",
"export": {
"exclude": [
".github",
"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 <tilen@majerle.eu>
* Version: v2.0.0
* Version: v2.1.0
*/
#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.0.0
* Version: v2.1.0
*/
#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.0.0
* Version: v2.1.0
*/
#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.0.0
* Version: v2.1.0
*/
#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.0.0
* Version: v2.1.0
*/
#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.0.0
* Version: v2.1.0
*/
#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.0.0
* Version: v2.1.0
*/
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.0.0
* Version: v2.1.0
*/
#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.0.0
* Version: v2.1.0
*/
#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.0.0
* Version: v2.1.0
*/
#include "system/lwmem_sys.h"

Expand Down

0 comments on commit 2bf5471

Please sign in to comment.