From 9753dbc1734f0775742442b884a0f2ab577eff10 Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Thu, 21 Dec 2023 10:05:04 +0000 Subject: [PATCH] Bump version to 4.1.6 --- Cargo.lock | 2 +- Cargo.toml | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80aadd2..544af5a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chirpstack-udp-forwarder" -version = "4.1.5" +version = "4.1.6" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index b7a42d6..5b54f16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ description = "ChirpStack UDP Forwarder for Concentratord, compatible with the Semtech UDP protocol" repository = "https://github.com/chirpstack/chirpstack-udp-forwarder/" license = "MIT" - version = "4.1.5" + version = "4.1.6" authors = ["Orne Brocaar "] edition = "2021" publish = false diff --git a/Makefile b/Makefile index c7181b5..3e7c9af 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # Update the version version: test -n "$(VERSION)" - sed -i 's/^version.*/version = "$(VERSION)"/g' ./Cargo.toml + sed -i 's/^ version.*/ version = "$(VERSION)"/g' ./Cargo.toml make test git add . git commit -v -m "Bump version to $(VERSION)"