Skip to content

Commit

Permalink
Push version to 2024.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfeilmeier committed Aug 1, 2024
1 parent 688f8ec commit bbeaddc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class OpenemsConstants {
/**
* The additional version string.
*/
public static final String VERSION_STRING = "SNAPSHOT";
public static final String VERSION_STRING = "";

/**
* The complete version as a SemanticVersion.
Expand Down
4 changes: 2 additions & 2 deletions ui/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 20240701
versionName "2024.7.1-SNAPSHOT"
versionCode 20240800
versionName "2024.8.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
4 changes: 2 additions & 2 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openems-ui",
"version": "2024.8.0-SNAPSHOT",
"version": "2024.8.0",
"license": "AGPL-3.0",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/changelog/view/component/changelog.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Role } from "src/app/shared/type/role";

export class Changelog {

public static readonly UI_VERSION = "2024.8.0-SNAPSHOT";
public static readonly UI_VERSION = "2024.8.0";

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

0 comments on commit bbeaddc

Please sign in to comment.