Skip to content

Commit 4fe3827

Browse files
committed
chore(library): Bump version number to 1.1.0 and date to 2024-3-8
This marks the start of development on Version 1.1.0
1 parent 42ffe6d commit 4fe3827

File tree

23 files changed

+46
-46
lines changed

23 files changed

+46
-46
lines changed

examples/flight_modes/flight_modes.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* @file flight_modes.ino
33
* @author Cassandra "ZZ Cat" Robinson (nicad.heli.flier@gmail.com)
44
* @brief Example of how to read flight modes from a receiver.
5-
* @version 1.0.1
6-
* @date 2024-3-5
5+
* @version 1.1.0
6+
* @date 2024-3-8
77
*
88
* @copyright Copyright (c) 2024, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

examples/link_stats/link_stats.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* @file link_stats.ino
33
* @author Cassandra "ZZ Cat" Robinson (nicad.heli.flier@gmail.com)
44
* @brief Example of how to read link statistics from a receiver.
5-
* @version 1.0.1
6-
* @date 2024-3-5
5+
* @version 1.1.0
6+
* @date 2024-3-8
77
*
88
* @copyright Copyright (c) 2024, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

examples/platformio/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* @file main.cpp
33
* @author Cassandra "ZZ Cat" Robinson (nicad.heli.flier@gmail.com)
44
* @brief This is the main development file for CRSF for Arduino.
5-
* @version 1.0.1
6-
* @date 2024-3-5
5+
* @version 1.1.0
6+
* @date 2024-3-8
77
*
88
* @copyright Copyright (c) 2024, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

examples/rc_channels/rc_channels.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* @file rc_channels.ino
33
* @author Cassandra "ZZ Cat" Robinson (nicad.heli.flier@gmail.com)
44
* @brief Example of how to read rc channels from a receiver.
5-
* @version 1.0.1
6-
* @date 2024-3-5
5+
* @version 1.1.0
6+
* @date 2024-3-8
77
*
88
* @copyright Copyright (c) 2024, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

examples/telemetry/telemetry.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* @file flight_modes.ino
33
* @author Cassandra "ZZ Cat" Robinson (nicad.heli.flier@gmail.com)
44
* @brief Example of how to send telemetry back to your RC handset using CRSF for Arduino.
5-
* @version 1.0.1
6-
* @date 2024-3-5
5+
* @version 1.1.0
6+
* @date 2024-3-8
77
*
88
* @copyright Copyright (c) 2024, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
33
"name": "CRSFforArduino",
4-
"version": "1.0.1",
4+
"version": "1.1.0",
55
"description": "An Arduino Library for communicating with ExpressLRS and TBS Crossfire receivers.",
66
"keywords": "arduino, remote-control, arduino-library, protocols, rc, radio-control, crsf, expresslrs",
77
"repository":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=CRSFforArduino
2-
version=1.0.1
2+
version=1.1.0
33
author=Cassandra Robinson <nicad.heli.flier@gmail.com>
44
maintainer=Cassandra Robinson <nicad.heli.flier@gmail.com>
55
sentence=CRSF for Arduino brings the Crossfire Protocol to the Arduino ecosystem.

src/CFA_Config.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
* @file CFA_Config.hpp
33
* @author Cassandra "ZZ Cat" Robinson (nicad.heli.flier@gmail.com)
44
* @brief This is the configuration file for CRSF for Arduino.
5-
* @version 1.0.1
6-
* @date 2024-3-5
5+
* @version 1.1.0
6+
* @date 2024-3-8
77
*
88
* @copyright Copyright (c) 2024, Cassandra "ZZ Cat" Robinson. All rights reserved.
99
*
@@ -36,8 +36,8 @@ namespace crsfForArduinoConfig
3636
/* CRSFforArduino version
3737
Versioning is done using Semantic Versioning 2.0.0.
3838
See https://semver.org/ for more information. */
39-
#define CRSFFORARDUINO_VERSION "1.0.1"
40-
#define CRSFFORARDUINO_VERSION_DATE "2024-3-5"
39+
#define CRSFFORARDUINO_VERSION "1.1.0"
40+
#define CRSFFORARDUINO_VERSION_DATE "2024-3-8"
4141
#define CRSFFORARDUINO_VERSION_MAJOR 1
4242
#define CRSFFORARDUINO_VERSION_MINOR 0
4343
#define CRSFFORARDUINO_VERSION_PATCH 1

src/CRSFforArduino.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* @author Cassandra "ZZ Cat" Robinson (nicad.heli.flier@gmail.com)
44
* @brief This is the Sketch Layer, which is a simplified API for CRSF for Arduino.
55
* It is intended to be used by the user in their sketches.
6-
* @version 1.0.1
7-
* @date 2024-3-5
6+
* @version 1.1.0
7+
* @date 2024-3-8
88
*
99
* @copyright Copyright (c) 2024, Cassandra "ZZ Cat" Robinson. All rights reserved.
1010
*

src/CRSFforArduino.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* @author Cassandra "ZZ Cat" Robinson (nicad.heli.flier@gmail.com)
44
* @brief This is the Sketch Layer, which is a simplified API for CRSF for Arduino.
55
* It is intended to be used by the user in their sketches.
6-
* @version 1.0.1
7-
* @date 2024-3-5
6+
* @version 1.1.0
7+
* @date 2024-3-8
88
*
99
* @copyright Copyright (c) 2024, Cassandra "ZZ Cat" Robinson. All rights reserved.
1010
*

0 commit comments

Comments
 (0)