From 089daf0ac9feb04228816c43f27c91c531c2b78a Mon Sep 17 00:00:00 2001 From: Rob Tillaart Date: Wed, 18 Oct 2023 16:24:20 +0200 Subject: [PATCH] 0.2.6 BitArray --- libraries/BitArray/BitArray.cpp | 2 +- libraries/BitArray/BitArray.h | 4 ++-- libraries/BitArray/CHANGELOG.md | 5 ++++- libraries/BitArray/README.md | 12 ++++++++++++ libraries/BitArray/library.json | 4 ++-- libraries/BitArray/library.properties | 2 +- 6 files changed, 22 insertions(+), 7 deletions(-) diff --git a/libraries/BitArray/BitArray.cpp b/libraries/BitArray/BitArray.cpp index 75976a49..d23158e8 100644 --- a/libraries/BitArray/BitArray.cpp +++ b/libraries/BitArray/BitArray.cpp @@ -1,7 +1,7 @@ // // FILE: BitArray.cpp // AUTHOR: Rob Tillaart -// VERSION: 0.2.6 +// VERSION: 0.2.7 // PURPOSE: BitArray library for Arduino // URL: https://github.com/RobTillaart/BitArray // http://forum.arduino.cc/index.php?topic=361167 diff --git a/libraries/BitArray/BitArray.h b/libraries/BitArray/BitArray.h index 958003ab..1f22e274 100644 --- a/libraries/BitArray/BitArray.h +++ b/libraries/BitArray/BitArray.h @@ -2,7 +2,7 @@ // // FILE: bitArray.h // AUTHOR: Rob Tillaart -// VERSION: 0.2.6 +// VERSION: 0.2.7 // PURPOSE: BitArray library for Arduino // URL: https://github.com/RobTillaart/BitArray @@ -20,7 +20,7 @@ #include "Arduino.h" -#define BITARRAY_LIB_VERSION (F("0.2.6")) +#define BITARRAY_LIB_VERSION (F("0.2.7")) #define BA_SEGMENT_SIZE 200 diff --git a/libraries/BitArray/CHANGELOG.md b/libraries/BitArray/CHANGELOG.md index 65890251..9975fbca 100644 --- a/libraries/BitArray/CHANGELOG.md +++ b/libraries/BitArray/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.2.7] - 2023-10-18 +- update readme.md + + ## [0.2.6] - 2023-02-08 - update readme.md - fix changelog @@ -15,7 +19,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - add toggle example - minor edits - ## [0.2.5] - 2022-10-29 - add changelog.md - add RP2040 in build-CI diff --git a/libraries/BitArray/README.md b/libraries/BitArray/README.md index d67c39f2..5e0df46a 100644 --- a/libraries/BitArray/README.md +++ b/libraries/BitArray/README.md @@ -2,8 +2,11 @@ [![Arduino CI](https://github.com/RobTillaart/BitArray/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci) [![Arduino-lint](https://github.com/RobTillaart/BitArray/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/BitArray/actions/workflows/arduino-lint.yml) [![JSON check](https://github.com/RobTillaart/BitArray/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/BitArray/actions/workflows/jsoncheck.yml) +[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/BitArray.svg)](https://github.com/RobTillaart/BitArray/issues) + [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/BitArray/blob/master/LICENSE) [![GitHub release](https://img.shields.io/github/release/RobTillaart/BitArray.svg?maxAge=3600)](https://github.com/RobTillaart/BitArray/releases) +[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/BitArray.svg)](https://registry.platformio.org/libraries/robtillaart/BitArray) # BitArray @@ -106,3 +109,12 @@ Return value is maxValue (debug info). #### Wont +## Support + +If you appreciate my libraries, you can support the development and maintenance. +Improve the quality of the libraries by providing issues and Pull Requests, or +donate through PayPal or GitHub sponsors. + +Thank you, + + diff --git a/libraries/BitArray/library.json b/libraries/BitArray/library.json index 23da9acd..e26acaa9 100644 --- a/libraries/BitArray/library.json +++ b/libraries/BitArray/library.json @@ -15,9 +15,9 @@ "type": "git", "url": "https://github.com/RobTillaart/BitArray.git" }, - "version": "0.2.6", + "version": "0.2.7", "license": "MIT", - "frameworks": "arduino", + "frameworks": "*", "platforms": "*", "headers": "BitArray.h" } diff --git a/libraries/BitArray/library.properties b/libraries/BitArray/library.properties index e5c43fcb..cff30ab0 100644 --- a/libraries/BitArray/library.properties +++ b/libraries/BitArray/library.properties @@ -1,5 +1,5 @@ name=BitArray -version=0.2.6 +version=0.2.7 author=Rob Tillaart maintainer=Rob Tillaart sentence=Arduino library for compact array of objects with a size expressed in bits.