Skip to content

Commit a51389d

Browse files
committed
Merge tag '2024.8.0' into develop
2024.8.0
2 parents 688f8ec + 498e3b1 commit a51389d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

io.openems.common/src/io/openems/common/OpenemsConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class OpenemsConstants {
3636
/**
3737
* The additional version string.
3838
*/
39-
public static final String VERSION_STRING = "SNAPSHOT";
39+
public static final String VERSION_STRING = "";
4040

4141
/**
4242
* The complete version as a SemanticVersion.

ui/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
defaultConfig {
1010
minSdkVersion rootProject.ext.minSdkVersion
1111
targetSdkVersion rootProject.ext.targetSdkVersion
12-
versionCode 20240701
13-
versionName "2024.7.1-SNAPSHOT"
12+
versionCode 20240800
13+
versionName "2024.8.0"
1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
aaptOptions {
1616
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

ui/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openems-ui",
3-
"version": "2024.8.0-SNAPSHOT",
3+
"version": "2024.8.0",
44
"license": "AGPL-3.0",
55
"private": true,
66
"dependencies": {

ui/src/app/changelog/view/component/changelog.constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Role } from "src/app/shared/type/role";
22

33
export class Changelog {
44

5-
public static readonly UI_VERSION = "2024.8.0-SNAPSHOT";
5+
public static readonly UI_VERSION = "2024.8.0";
66

77
public static product(...products: Product[]) {
88
return products.map(product => Changelog.link(product.name, product.url)).join(", ") + '. ';

0 commit comments

Comments
 (0)