From bced403a12dfb6d9461e0ec5e450bb5bffa2c377 Mon Sep 17 00:00:00 2001 From: csowada Date: Sat, 25 Mar 2023 18:21:31 +0100 Subject: [PATCH 1/3] prepare next release --- CHANGELOG.md | 7 +++++++ pom.xml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f7a475..5843c05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. ## Unreleased +## [1.1.10] - 2023-03-25 +### Changed +- Updated source headers to year 2023 +### Fixed +- Fixed several SonarCube issues +- Update Maven dependencies + ## [1.1.9] - 2023-03-20 ### Fixed - Remove escaping (0xAA and 0xA) master data bytes and master CRC on function ``EBusCommandUtils.buildPartMasterTelegram`` diff --git a/pom.xml b/pom.xml index 1095d7e..fdfed19 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ eBUS core library - This library handles the communication with heating engineering via the BUS specification. This protocol is used by many heating manufacturers in Europe. de.cs-dev.ebus ebus-core - 1.1.10 + 1.1.11-SNAPSHOT https://github.com/csowada/ebus bundle From 0ac00b35865c1e5e39cc807948648a6c08b451c0 Mon Sep 17 00:00:00 2001 From: csowada Date: Sun, 26 Mar 2023 19:19:13 +0200 Subject: [PATCH 2/3] Update for next release --- CHANGELOG.md | 4 ++++ src/main/java/de/csdev/ebus/utils/EBusUtils.java | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5843c05..c338cc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. ## Unreleased +## [1.1.11] - 2023-03-26 +### Fixed +- Fix ``@Nullable`` in Utils class + ## [1.1.10] - 2023-03-25 ### Changed - Updated source headers to year 2023 diff --git a/src/main/java/de/csdev/ebus/utils/EBusUtils.java b/src/main/java/de/csdev/ebus/utils/EBusUtils.java index db45306..896d293 100644 --- a/src/main/java/de/csdev/ebus/utils/EBusUtils.java +++ b/src/main/java/de/csdev/ebus/utils/EBusUtils.java @@ -240,7 +240,7 @@ public static boolean isValidAddress(final byte address) { * @param hexDumpString * @return */ - public static @Nullable Byte toByte(final String hexDumpString) { + public static @Nullable Byte toByte(final @Nullable String hexDumpString) { if (StringUtils.isEmpty(hexDumpString)) { return null; } From a180685a03d23e03c55ee3ce487bcde0f934cd47 Mon Sep 17 00:00:00 2001 From: csowada Date: Sun, 26 Mar 2023 19:20:22 +0200 Subject: [PATCH 3/3] Prepare for next release pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fdfed19..9747783 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ eBUS core library - This library handles the communication with heating engineering via the BUS specification. This protocol is used by many heating manufacturers in Europe. de.cs-dev.ebus ebus-core - 1.1.11-SNAPSHOT + 1.1.11 https://github.com/csowada/ebus bundle