Skip to content

Commit

Permalink
fix(): Updates version to 2023.8
Browse files Browse the repository at this point in the history
  • Loading branch information
sfrehse committed Nov 20, 2023
1 parent 661c414 commit 1306dc8
Show file tree
Hide file tree
Showing 9 changed files with 50 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ The ideal place for questions or discussions about the HiveMQ Edge Edition is ou

=== Quick Start

* Download the latest https://github.com/hivemq/hivemq-edge/releases/download/2023.6/hivemq-edge-2023.6.zip[HiveMQ Edge binary package].
* Download the latest https://github.com/hivemq/hivemq-edge/releases/download/2023.8/hivemq-edge-2023.8.zip[HiveMQ Edge binary package].
* Unzip the package.
* Run the run.sh (Linux/OSX) or run.bat (Windows) in the bin folder of the package.

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2023.7
version=2023.8

# Enable build cache.
org.gradle.caching=true
4 changes: 2 additions & 2 deletions hivemq-edge/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version=2023.7
version=2023.8
#
# main dependencies
#
hivemq-extension-sdk.version=4.16.0
hivemq-edge-extension-sdk.version=2023.6
hivemq-edge-extension-sdk.version=2023.8
# netty
netty.version=4.1.79.Final
# Jersey (JAXRS / Sun)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public interface HiveMQEdgeConstants {

//TODO this should be build driven for modules but use single constant for now
String VERSION = "2023.7";
String VERSION = "2023.8";
String DEVELOPMENT_MODE = "hivemq.edge.workspace.modules";
String CONFIG_FILE_NAME = "hivemq.edge.config.xml";
String MUTABLE_CONFIGURAION_ENABLED = "mutable.configuration.enabled";
Expand Down
44 changes: 41 additions & 3 deletions hivemq-edge/src/main/resources/hivemq-edge-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"modules" : [
{
"id" : "modbus",
"version" : "2023.7",
"version" : "2023.8",
"name" : "Modbus to MQTT Protocol Adapter",
"description" : "Connects HiveMQ Edge to existing Modbus devices, bringing data from coils & registers into MQTT.",
"author" : "HiveMQ",
Expand All @@ -57,7 +57,7 @@
},
{
"id" : "opc-ua-client",
"version" : "2023.7",
"version" : "2023.8",
"name" : "OPC-UA to MQTT Protocol Adapter",
"description" : "Connects HiveMQ Edge to existing OPC-UA services as a client and enables a seamless exchange of data between MQTT and OPC-UA.",
"author" : "HiveMQ",
Expand All @@ -76,7 +76,7 @@
},
{
"id" : "http",
"version" : "2023.7 (BETA)",
"version" : "2023.8 (BETA)",
"name" : "HTTP(s) to MQTT Protocol Adapter",
"description" : "Connects HiveMQ Edge to arbitrary web endpoint URLs via HTTP(s), consuming structured JSON or plain data.",
"author" : "HiveMQ",
Expand All @@ -92,6 +92,44 @@
"url" : "https://raw.githubusercontent.com/hivemq/hivemq-edge/master/hivemq-edge/src/main/resources/httpd/images/http-logo.png",
"external" : true
}
},
{
"id" : "s7",
"version" : "2023.8 (BETA)",
"name" : "S7 to MQTT Protocol Adapter",
"description" : "Connects HiveMQ Edge to S7-300, S7-400, S7-1200 & S7-1500 devices, reading data from the PLC into MQTT.",
"author" : "HiveMQ",
"documentationLink" : {
"url" : "https://github.com/hivemq/hivemq-edge/wiki/Protocol-adapters#s7",
"external" : true
},
"provisioningLink" : {
"url" : "https://github.com/hivemq/hivemq-edge/releases",
"external" : true
},
"logoUrl" : {
"url" : "https://raw.githubusercontent.com/hivemq/hivemq-edge/master/hivemq-edge/src/main/resources/httpd/images/s7-icon.png",
"external" : true
}
},
{
"id" : "ads",
"version" : "2023.8 (BETA)",
"name" : "ADS to MQTT Protocol Adapter",
"description" : "Connects HiveMQ Edge to devices supporting ADS, reading data from the PLC into MQTT.",
"author" : "HiveMQ",
"documentationLink" : {
"url" : "https://github.com/hivemq/hivemq-edge/wiki/Protocol-adapters#ads",
"external" : true
},
"provisioningLink" : {
"url" : "https://github.com/hivemq/hivemq-edge/releases",
"external" : true
},
"logoUrl" : {
"url" : "https://raw.githubusercontent.com/hivemq/hivemq-edge/master/hivemq-edge/src/main/resources/httpd/images/beckhoff-icon.png",
"external" : true
}
}
],
"properties" : { }
Expand Down
2 changes: 1 addition & 1 deletion modules/hivemq-edge-module-http/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2023.7
version=2023.8
#
# main dependencies
#
Expand Down
2 changes: 1 addition & 1 deletion modules/hivemq-edge-module-modbus/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2023.7
version=2023.8
#
# main dependencies
#
Expand Down
2 changes: 1 addition & 1 deletion modules/hivemq-edge-module-opcua/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2023.7
version=2023.8
#
# main dependencies
#
Expand Down
2 changes: 1 addition & 1 deletion modules/hivemq-edge-module-plc4x/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2023.7.alpha
version=2023.8.alpha
#
# main dependencies
#
Expand Down

0 comments on commit 1306dc8

Please sign in to comment.