Bump version to 7.0.1

This commit is contained in:
jgromes 2024-09-29 15:22:40 +02:00
parent 38fc7a97a4
commit 8a83df6ad4
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
version: "7.0.0"
version: "7.0.1"
description: "Universal wireless communication library. User-friendly library for sub-GHz radio modules (SX1278, RF69, CC1101, SX1268, and many others), as well as ham radio digital modes (RTTY, SSTV, AX.25 etc.) and other protocols (Pagers, LoRaWAN)."
tags:
- radio

View file

@ -1,6 +1,6 @@
{
"name": "RadioLib",
"version": "7.0.0",
"version": "7.0.1",
"description": "Universal wireless communication library. User-friendly library for sub-GHz radio modules (SX1278, RF69, CC1101, SX1268, and many others), as well as ham radio digital modes (RTTY, SSTV, AX.25 etc.) and other protocols (Pagers, LoRaWAN).",
"keywords": "radio, communication, morse, cc1101, aprs, sx1276, sx1278, sx1272, rtty, ax25, afsk, nrf24, rf69, sx1231, rfm96, rfm98, sstv, sx1280, sx1281, sx1282, sx1261, sx1262, sx1268, si4432, rfm22, llcc68, pager, pocsag, lorawan, lr1110, lr1120, lr1121",
"homepage": "https://github.com/jgromes/RadioLib",

View file

@ -1,5 +1,5 @@
name=RadioLib
version=7.0.0
version=7.0.1
author=Jan Gromes <gromes.jan@gmail.com>
maintainer=Jan Gromes <gromes.jan@gmail.com>
sentence=Universal wireless communication library

View file

@ -588,7 +588,7 @@
// version definitions
#define RADIOLIB_VERSION_MAJOR 7
#define RADIOLIB_VERSION_MINOR 0
#define RADIOLIB_VERSION_PATCH 0
#define RADIOLIB_VERSION_PATCH 1
#define RADIOLIB_VERSION_EXTRA 0
#define RADIOLIB_VERSION (((RADIOLIB_VERSION_MAJOR) << 24) | ((RADIOLIB_VERSION_MINOR) << 16) | ((RADIOLIB_VERSION_PATCH) << 8) | (RADIOLIB_VERSION_EXTRA))