From 971c12d24874a3b36569ec9c8f41b9a35284bfbd Mon Sep 17 00:00:00 2001 From: Armin Date: Thu, 7 Apr 2022 22:26:47 +0200 Subject: [PATCH] 1.9.0 as a pre release for 2.0.0 --- README.md | 2 ++ library.json | 2 +- library.properties | 2 +- src/PWMDcMotor.h | 6 +++--- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 61c10e2..1a31e83 100644 --- a/README.md +++ b/README.md @@ -198,6 +198,8 @@ VIN sensing # Revision History ### Version 2.0.0 - work in progress + +### Version 1.9.0 - a 2.0.0 pre release - Removed all *Compensated functions, compensation now is always active. - Removed StopSpeed from EepromMotorinfoStruct. - Removed StartSpeed. diff --git a/library.json b/library.json index 79859f8..e5332bb 100644 --- a/library.json +++ b/library.json @@ -6,7 +6,7 @@ "type": "git", "url": "https://github.com/ArminJo/PWMMotorControl" }, - "version": "2.0.0", + "version": "1.9.0", "exclude": "pictures", "authors": { "name": "Armin Joachimsmeyer", diff --git a/library.properties b/library.properties index 17f1aa5..8bccede 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=PWMMotorControl -version=2.0.0 +version=1.9.0 author=Armin Joachimsmeyer maintainer=Armin Joachimsmeyer sentence=Control brushed DC motors by PWM and uses optional attached encoders to drive fixed distances. For L298 or TB6612, or Adafruit Motor Shield
diff --git a/src/PWMDcMotor.h b/src/PWMDcMotor.h index 2560131..bf8f493 100644 --- a/src/PWMDcMotor.h +++ b/src/PWMDcMotor.h @@ -38,9 +38,9 @@ #include -#define VERSION_PWMMOTORCONTROL "2.0.0" -#define VERSION_PWMMOTORCONTROL_MAJOR 2 -#define VERSION_PWMMOTORCONTROL_MINOR 0 +#define VERSION_PWMMOTORCONTROL "1.9.0" +#define VERSION_PWMMOTORCONTROL_MAJOR 1 +#define VERSION_PWMMOTORCONTROL_MINOR 9 // The change log is at the bottom of the file #define MILLIS_IN_ONE_SECOND 1000L