0.1.9 Currency

This commit is contained in:
Rob Tillaart 2024-04-11 17:46:52 +02:00
parent 597ff9102d
commit d47034ab9f
12 changed files with 25 additions and 24 deletions

View File

@ -1,4 +1,4 @@
# These are supported funding model platforms
github: RobTillaart
custom: "https://www.paypal.me/robtillaart"

View File

@ -1,13 +1,13 @@
name: Arduino-lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
compliance: strict
compliance: strict

View File

@ -1,4 +1,3 @@
---
name: Arduino CI
on: [push, pull_request]
@ -6,12 +5,14 @@ on: [push, pull_request]
jobs:
runTest:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- run: |
sudo sysctl vm.mmap_rnd_bits=28
gem install arduino_ci
arduino_ci.rb

View File

@ -9,10 +9,10 @@ on:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: json-syntax-check
uses: limitusus/json-syntax-check@v1
uses: limitusus/json-syntax-check@v2
with:
pattern: "\\.json$"
pattern: "\\.json$"

View File

@ -1,4 +1,4 @@
# Change Log Currency
# Changelog Currency
All notable changes to this project will be documented in this file.
@ -6,10 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.1.9] - 2024-04-11
- update GitHub actions
- minor edits
## [0.1.8] - 2023-10-19
- update readme.md
## [0.1.7] - 2022-10-30
- add changelog.md
- add rp2040 to build-CI

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2021-2023 Rob Tillaart
Copyright (c) 2021-2024 Rob Tillaart
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -1,7 +1,7 @@
//
// FILE: currency.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.1.8
// VERSION: 0.1.9
// PURPOSE: Currency library for Arduino
// URL: https://github.com/RobTillaart/Currency

View File

@ -2,7 +2,7 @@
//
// FILE: currency.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.8
// VERSION: 0.1.9
// PURPOSE: Currency library for Arduino
// URL: https://github.com/RobTillaart/Currency
@ -10,7 +10,7 @@
#include "Arduino.h"
#define CURRENCY_VERSION (F("0.1.8"))
#define CURRENCY_VERSION (F("0.1.9"))
// TODO

View File

@ -1,9 +1,7 @@
//
// FILE: currency_performance.ino
// AUTHOR: Rob Tillaart
// VERSION: 0.1.0
// PURPOSE: performance test
// DATE: 2021-12-14
// URL: https://github.com/RobTillaart/currency
@ -51,4 +49,4 @@ void loop()
}
// -- END OF FILE --
// -- END OF FILE --

View File

@ -2,7 +2,6 @@
// FILE: print_currency.ino
// AUTHOR: Rob Tillaart
// PURPOSE: display an int as currency test
// DATE: 2021-02-28
// URL: https://github.com/RobTillaart/currency
@ -80,5 +79,5 @@ void loop()
}
// -- END OF FILE --
// -- END OF FILE --

View File

@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/currency"
},
"version": "0.1.8",
"version": "0.1.9",
"license": "MIT",
"frameworks": "*",
"platforms": "*",

View File

@ -1,8 +1,8 @@
name=currency
version=0.1.8
version=0.1.9
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library to help formatting integers as currency e.g. $ 1.000.000,00.
sentence=Arduino library to help formatting integers as currency e.g. $ 1.000.000,00.
paragraph=Supports 64 bit integers currency64(..)
category=Data Processing
url=https://github.com/RobTillaart/currency