Skip to content

Commit

Permalink
Start development of version 2024.1.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
sfeilmeier committed Dec 4, 2023
1 parent 9039d56 commit a6c6a3b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions io.openems.common/src/io/openems/common/OpenemsConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ public class OpenemsConstants {
* <p>
* This is the year of the release.
*/
public static final short VERSION_MAJOR = 2023;
public static final short VERSION_MAJOR = 2024;

/**
* The minor version of OpenEMS.
*
* <p>
* This is the month of the release.
*/
public static final short VERSION_MINOR = 12;
public static final short VERSION_MINOR = 1;

/**
* The patch version of OpenEMS.
Expand All @@ -43,7 +43,7 @@ public class OpenemsConstants {
/**
* The additional version string.
*/
public static final String VERSION_STRING = "";
public static final String VERSION_STRING = "SNAPSHOT";

/**
* The complete version as a SemanticVersion.
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": "2023.12.0",
"version": "2024.1.0-SNAPSHOT",
"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 = "2023.12.0";
public static readonly UI_VERSION = "2024.1.0-SNAPSHOT";

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

0 comments on commit a6c6a3b

Please sign in to comment.