0.2.4 NibbleArray

This commit is contained in:
rob tillaart 2022-11-18 15:35:51 +01:00
parent ae00e713ca
commit c18f9ff18a
6 changed files with 59 additions and 14 deletions

View File

@ -1,3 +1,18 @@
platforms:
rpipico:
board: rp2040:rp2040:rpipico
package: rp2040:rp2040
gcc:
features:
defines:
- ARDUINO_ARCH_RP2040
warnings:
flags:
packages:
rp2040:rp2040:
url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
compile:
# Choosing to run compilation tests on 2 different Arduino platforms
platforms:
@ -9,3 +24,6 @@ compile:
- esp32
- esp8266
- mega2560
- rpipico

View File

@ -0,0 +1,36 @@
# Change Log nibbleArray
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.2.4] - 2022-11-18
- add RP2040 in build-CI
- add changelog.md
## [0.2.3] - 2021-12-22
- update library.json, readme
- update license
- minor edits
## [0.2.2] - 2020-11-10
- update Arduino-CI, badges
- fix bug in setAll()
- add memory()
## [0.2.1 2020-01-02
- Arduino-CI + unit test
## [0.2.0 2020-06-21
- refactor
- add #pragma once
- removed pre 1.0 support
----
## [0.1.0] - 2015-04-12
- initial version.

View File

@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/nibbleArray.git"
},
"version": "0.2.3",
"version": "0.2.4",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",

View File

@ -1,5 +1,5 @@
name=NibbleArray
version=0.2.3
version=0.2.4
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Library to implement a compact array of nibbles (4 bit).

View File

@ -1,18 +1,9 @@
//
// FILE: nibbleArray.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.2.3
// VERSION: 0.2.4
// PURPOSE: Arduino library for a compact array of nibbles (4 bits)
// URL: https://github.com/RobTillaart/nibbleArray
//
// HISTORY:
// 0.1.0 2015-04-12 initial version
// 0.2.0 2020-06-21 refactor; #pragma once; removed pre 1.0 support
// 0.2.1 2020-01-02 Arduino-CI + unit test
// 0.2.2 2020-11-10 update Arduino-CI, badges
// fix bug in setAll();
// add memory();
// 0.2.3 2021-12-22 update library.json, readme, license, minor edits
#include "nibbleArray.h"

View File

@ -2,7 +2,7 @@
//
// FILE: nibbleArray.h
// AUTHOR: Rob Tillaart
// VERSION: 0.2.3
// VERSION: 0.2.4
// PURPOSE: Arduino library for a compact array of nibbles (4 bits)
// URL: https://github.com/RobTillaart/nibbleArray
//
@ -10,7 +10,7 @@
#include "Arduino.h"
#define NIBBLEARRAY_LIB_VERSION (F("0.2.2"))
#define NIBBLEARRAY_LIB_VERSION (F("0.2.4"))
#ifndef NIBBLEARRAY_MAXSIZE
// UNO BASED MAXSIZE?