Skip to content

Commit 6281323

Browse files
committed
update version number
1 parent b224e7d commit 6281323

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esp_dmx",
3-
"version": "4.0.1",
3+
"version": "4.1.0",
44
"description": "This library allows for transmitting and receiving ANSI-ESTA E1.11 DMX-512A and ANSI-ESTA E1.20 RDM using an Espressif ESP32. It provides control and analysis of the packet configuration and allows the user to read or write synchronously or asynchronously from the DMX bus using whichever hardware UART port that is desired. This library also includes tools for data error-checking to safely process DMX and RDM commands as well as DMX packet metadata extraction to assist with troubleshooting errors.",
55
"keywords": "esp32, espressif32, DMX, DMX512, DMX512-A, RDM, lighting, theater, theatre, espdmx, esp dmx",
66
"repository":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=esp_dmx
2-
version=4.0.1
2+
version=4.1.0
33
author=Mitch Weisbrod <mitch@theweisbrods.com>
44
maintainer=Mitch Weisbrod <mitch@theweisbrods.com>
55
sentence=Transmit and receive DMX and RDM using an ESP32.

src/esp_dmx.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ extern "C" {
2020
#define ESP_DMX_VERSION_MAJOR 4
2121

2222
/** @brief The minor version number of this library. (x.X.x)*/
23-
#define ESP_DMX_VERSION_MINOR 0
23+
#define ESP_DMX_VERSION_MINOR 1
2424

2525
/** @brief The patch version number of this library. (x.x.X)*/
26-
#define ESP_DMX_VERSION_PATCH 1
26+
#define ESP_DMX_VERSION_PATCH 0
2727

2828
/** @brief The version of this library expressed as a 32-bit integer value.*/
2929
#define ESP_DMX_VERSION_ID \

0 commit comments

Comments
 (0)