Skip to content

Commit 5eae9c5

Browse files
committed
Start development of 2025.2.0-SNAPSHOT
1 parent 794740c commit 5eae9c5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class OpenemsConstants {
2222
* <p>
2323
* This is the month of the release.
2424
*/
25-
public static final short VERSION_MINOR = 1;
25+
public static final short VERSION_MINOR = 2;
2626

2727
/**
2828
* The patch version of OpenEMS.
@@ -36,7 +36,7 @@ public class OpenemsConstants {
3636
/**
3737
* The additional version string.
3838
*/
39-
public static final String VERSION_STRING = "";
39+
public static final String VERSION_STRING = "SNAPSHOT";
4040

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

ui/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openems-ui",
3-
"version": "2025.1.0",
3+
"version": "2025.2.0-SNAPSHOT",
44
"license": "AGPL-3.0",
55
"private": true,
66
"dependencies": {

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

+1-1
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 = "2025.1.0";
5+
public static readonly UI_VERSION = "2025.2.0-SNAPSHOT";
66

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

0 commit comments

Comments
 (0)