0.1.2 palindrome

This commit is contained in:
rob tillaart 2022-11-19 13:03:21 +01:00
parent a142fa8189
commit 4bca1212b1
7 changed files with 52 additions and 15 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:
@ -8,4 +23,6 @@ compile:
- m4
- esp32
# - esp8266
# - mega2560
# - mega2560
- rpipico

View File

@ -0,0 +1,21 @@
# Change Log palindrome
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.1.2] - 2022-11-19
- add RP2040 in build-CI
- add changelog.md
- update keywords.txt
## [0.1.1] - 2021-12-03
- add palindromeCount()
- add palindromePercentage()
## [0.1.0] - 2021-12-02
- initial version.

View File

@ -5,11 +5,15 @@ palindrome KEYWORD1
# Methods and Functions (KEYWORD2)
KEYWORD2
KEYWORD2
findPalindrome KEYWORD2
findEvenPalindrome KEYWORD2
findOddPalindrome KEYWORD2
isPalindrome KEYWORD2
palindromeCount KEYWORD2
palindromePercentage KEYWORD2
# Constants (LITERAL1)
Constants (LITERAL1)
PALINDROME_LIB_VERSION LITERAL1

View File

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

View File

@ -1,5 +1,5 @@
name=palindrome
version=0.1.1
version=0.1.2
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Palindrome library

View File

@ -1,14 +1,9 @@
//
// FILE: palindrome.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.1.1
// VERSION: 0.1.2
// PURPOSE: Arduino library to do palindrome experiments.
// URL: https://github.com/RobTillaart/palindrome
//
// HISTORY:
// 0.1.0 2021-12-02 initial version
// 0.1.1 2021-12-03 add palindromeCount(), palindromePercentage()
#include "palindrome.h"

View File

@ -2,7 +2,7 @@
//
// FILE: palindrome.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.1
// VERSION: 0.1.2
// PURPOSE: Arduino library to do palindrome experiments.
// URL: https://github.com/RobTillaart/palindrome
//
@ -10,7 +10,7 @@
#include "Arduino.h"
#define PALINDROME_LIB_VERSION (F("0.1.1"))
#define PALINDROME_LIB_VERSION (F("0.1.2"))
class palindrome