0.1.3 WaterMix

This commit is contained in:
Rob Tillaart 2023-11-23 14:25:18 +01:00
parent 670d694a4b
commit d775745864
5 changed files with 8 additions and 9 deletions

View File

@ -6,13 +6,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.1.3] - 2023-11-23
- update readme.md
## [0.1.2] - 2023-09-08
- add base class **LiquidMix** (moved functions up)
- made **WaterMix::density()** public
- update readme.md
- fix keywords.txt
## [0.1.1] - 2023-08-30
- add **void addExact(float volume, float temperature)** (works only for water).
- add **float mass()** (works only for water).

View File

@ -238,7 +238,6 @@ Source: - https://www.engineeringtoolbox.com/cubical-expansion-coefficients-d_12
- update documentation
- library can be used for water and salinity and other linear related things.
#### Should
- investigate linear expansion
@ -246,7 +245,6 @@ Source: - https://www.engineeringtoolbox.com/cubical-expansion-coefficients-d_12
- do not make the library too complex (see could below).
- extend unit tests
#### Could
- add **void cool(time)** == depends on many factors
@ -258,7 +256,6 @@ Source: - https://www.engineeringtoolbox.com/cubical-expansion-coefficients-d_12
- replace div and mul with operators \* and \/
- investigate injection of density function to make LiquidMix generic?
#### Wont (or on special request)
- add "unit string" + Printable interface?
@ -277,7 +274,6 @@ Source: - https://www.engineeringtoolbox.com/cubical-expansion-coefficients-d_12
- must use defined liquid and temp scale.
- user responsibility for now.
## Support
If you appreciate my libraries, you can support the development and maintenance.

View File

@ -3,14 +3,14 @@
// FILE: WaterMix.h
// AUTHOR: Rob Tillaart
// PURPOSE: Arduino library for mixing water with different temperatures.
// VERSION: 0.1.2
// VERSION: 0.1.3
// URL: https://github.com/RobTillaart/WaterMix
#include "Arduino.h"
#define WATERMIX_LIB_VERSION (F("0.1.2"))
#define WATERMIX_LIB_VERSION (F("0.1.3"))
////////////////////////////////////////////

View File

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

View File

@ -1,5 +1,5 @@
name=WaterMix
version=0.1.2
version=0.1.3
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for mixing water with different temperatures.