Skip to content

Commit

Permalink
v0.8.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
malachib committed Dec 10, 2024
1 parent aa006ec commit 992a5b5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.8.2 - DDMMM24
# v0.8.2 - 10DEC24

## Added Features

Expand Down
2 changes: 1 addition & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Autogenerated by version.cmake
version: "0.8.1"
version: "0.8.2"
description: "Embedded oriented std library"
url: "https://github.com/malachi-iot/estdlib"
repository: "https://github.com/malachi-iot/estdlib"
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"examples": [
"examples/pio/*/src/*.cpp"
],
"version": "0.8.1",
"version": "0.8.2",
"frameworks": [
"arduino",
"espidf",
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

cmake_minimum_required(VERSION 3.13)

project(estd VERSION 0.8.1 LANGUAGES CXX
project(estd VERSION 0.8.2 LANGUAGES CXX
DESCRIPTION "Embedded oriented std library"
HOMEPAGE_URL "https://github.com/malachi-iot/estdlib")

Expand Down
6 changes: 3 additions & 3 deletions src/estd/port/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#define ESTD_VER_MAJOR 0
#define ESTD_VER_MINOR 8
#define ESTD_VER_PATCH 1
#define ESTD_VER_PATCH 2

#define ESTD_VERSION ESTD_BUILD_SEMVER(0, 8, 1)
#define ESTD_VERSION_STR "0.8.1"
#define ESTD_VERSION ESTD_BUILD_SEMVER(0, 8, 2)
#define ESTD_VERSION_STR "0.8.2"
2 changes: 1 addition & 1 deletion tools/esp-idf/components/estd/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Autogenerated by version.cmake
version: "0.8.1"
version: "0.8.2"
description: "Embedded oriented std library"
url: "https://github.com/malachi-iot/estdlib"
repository: "https://github.com/malachi-iot/estdlib"
Expand Down

0 comments on commit 992a5b5

Please sign in to comment.