From 1d2f627bbbb6d1cba0df640f6a3e292282e924b5 Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Tue, 24 Jan 2023 12:23:44 +0000 Subject: [PATCH] Bump version to 4.2.0 --- Cargo.lock | 8 ++++---- api/grpc-web/package.json | 2 +- api/java/build.gradle.kts | 2 +- api/js/package.json | 2 +- api/kotlin/build.gradle.kts | 2 +- api/python/src/setup.py | 2 +- api/rust/Cargo.lock | 6 +++--- api/rust/Cargo.toml | 2 +- backend/Cargo.toml | 2 +- chirpstack/Cargo.toml | 2 +- lrwn/Cargo.toml | 2 +- ui/package.json | 2 +- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ba8b2341..50187f35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -663,7 +663,7 @@ dependencies = [ [[package]] name = "backend" -version = "4.2.0-test.1" +version = "4.2.0" dependencies = [ "aes-kw", "anyhow", @@ -880,7 +880,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chirpstack" -version = "4.2.0-test.1" +version = "4.2.0" dependencies = [ "aes", "anyhow", @@ -959,7 +959,7 @@ dependencies = [ [[package]] name = "chirpstack_api" -version = "4.2.0-test.1" +version = "4.2.0" dependencies = [ "hex", "pbjson", @@ -2239,7 +2239,7 @@ dependencies = [ [[package]] name = "lrwn" -version = "4.2.0-test.1" +version = "4.2.0" dependencies = [ "aes", "anyhow", diff --git a/api/grpc-web/package.json b/api/grpc-web/package.json index 430a9b32..82ff96a6 100644 --- a/api/grpc-web/package.json +++ b/api/grpc-web/package.json @@ -1,6 +1,6 @@ { "name": "@chirpstack/chirpstack-api-grpc-web", - "version": "4.2.0-test.1", + "version": "4.2.0", "description": "Chirpstack gRPC-web API", "license": "MIT", "devDependencies": { diff --git a/api/java/build.gradle.kts b/api/java/build.gradle.kts index d36d82d8..02f0b23a 100644 --- a/api/java/build.gradle.kts +++ b/api/java/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } group = "io.chirpstack" -version = "4.2.0-test.1" +version = "4.2.0" repositories { mavenCentral() diff --git a/api/js/package.json b/api/js/package.json index 62f2f08c..b6d2c588 100644 --- a/api/js/package.json +++ b/api/js/package.json @@ -1,6 +1,6 @@ { "name": "@chirpstack/chirpstack-api", - "version": "4.2.0-test.1", + "version": "4.2.0", "description": "Chirpstack JS and TS API", "license": "MIT", "devDependencies": { diff --git a/api/kotlin/build.gradle.kts b/api/kotlin/build.gradle.kts index a09323e0..d3c0f550 100644 --- a/api/kotlin/build.gradle.kts +++ b/api/kotlin/build.gradle.kts @@ -9,7 +9,7 @@ plugins { } group = "io.chirpstack" -version = "4.2.0-test.1" +version = "4.2.0" repositories { mavenCentral() diff --git a/api/python/src/setup.py b/api/python/src/setup.py index 127254d0..878a18b0 100644 --- a/api/python/src/setup.py +++ b/api/python/src/setup.py @@ -18,7 +18,7 @@ CLASSIFIERS = [ setup( name='chirpstack-api', - version = "4.2.0-test.1", + version = "4.2.0", url='https://github.com/brocaar/chirpstack-api', author='Orne Brocaar', author_email='info@brocaar.com', diff --git a/api/rust/Cargo.lock b/api/rust/Cargo.lock index e4fd5071..6aef6df4 100644 --- a/api/rust/Cargo.lock +++ b/api/rust/Cargo.lock @@ -117,7 +117,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chirpstack_api" -version = "4.2.0-test.1" +version = "4.2.0" dependencies = [ "hex", "pbjson", @@ -755,9 +755,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.23.1" +version = "1.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38a54aca0c15d014013256222ba0ebed095673f89345dd79119d912eb561b7a8" +checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" dependencies = [ "autocfg", "bytes", diff --git a/api/rust/Cargo.toml b/api/rust/Cargo.toml index b9eadf8d..80c7d27e 100644 --- a/api/rust/Cargo.toml +++ b/api/rust/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "chirpstack_api" description = "ChirpStack Protobuf / gRPC API definitions." -version = "4.2.0-test.1" +version = "4.2.0" authors = ["Orne Brocaar "] license = "MIT" homepage = "https://www.chirpstack.io" diff --git a/backend/Cargo.toml b/backend/Cargo.toml index d1e69b24..93e96c92 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "backend" -version = "4.2.0-test.1" +version = "4.2.0" authors = ["Orne Brocaar "] edition = "2018" publish = false diff --git a/chirpstack/Cargo.toml b/chirpstack/Cargo.toml index d80eb2d6..9d20dc1a 100644 --- a/chirpstack/Cargo.toml +++ b/chirpstack/Cargo.toml @@ -3,7 +3,7 @@ name = "chirpstack" description = "ChirpStack is an open-source LoRaWAN(TM) Network Server" repository = "https://github.com/chirpstack/chirpstack" homepage="https://www.chirpstack.io/" -version = "4.2.0-test.1" +version = "4.2.0" authors = ["Orne Brocaar "] edition = "2021" publish = false diff --git a/lrwn/Cargo.toml b/lrwn/Cargo.toml index 614c6f80..42de5fb6 100644 --- a/lrwn/Cargo.toml +++ b/lrwn/Cargo.toml @@ -3,7 +3,7 @@ name = "lrwn" description = "Library for encoding / decoding LoRaWAN frames." homepage = "https://www.chirpstack.io" license = "MIT" -version = "4.2.0-test.1" +version = "4.2.0" authors = ["Orne Brocaar "] edition = "2018" repository = "https://github.com/chirpstack/chirpstack" diff --git a/ui/package.json b/ui/package.json index defdbd3d..0c855011 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "chirpstack-ui", - "version": "4.2.0-test.1", + "version": "4.2.0", "private": true, "dependencies": { "@ant-design/colors": "^6.0.0",