Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
nengyuanzhang committed Dec 8, 2023
2 parents ba0a90d + b0458ae commit 5b0de16
Show file tree
Hide file tree
Showing 13 changed files with 699 additions and 654 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
### Added
### Changed
### Fixed
### Removed

## [v3.12.0] - 2023-12-08

### Added
- added charge time and discharge time settings to power conversion system of microgrid
- added nominal voltage to microgrid battery in database, myems-api and myems-admin
Expand Down Expand Up @@ -1506,7 +1513,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Removed
- None.

[Unreleased]: https://github.com/MyEMS/myems/compare/v3.11.0...HEAD
[Unreleased]: https://github.com/MyEMS/myems/compare/v3.12.0...HEAD
[3.12.0]: https://github.com/MyEMS/myems/compare/v3.12.0...v3.11.0
[3.11.0]: https://github.com/MyEMS/myems/compare/v3.11.0...v3.10.0
[3.10.0]: https://github.com/MyEMS/myems/compare/v3.10.0...v3.9.0
[3.9.0]: https://github.com/MyEMS/myems/compare/v3.9.0...v3.8.0
Expand Down
2 changes: 1 addition & 1 deletion database/install/myems_system_db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1733,7 +1733,7 @@ USE `myems_system_db`;
INSERT INTO `myems_system_db`.`tbl_versions`
(`id`, `version`, `release_date`)
VALUES
(1, '3.12.0RC', '2023-12-01');
(1, '3.12.0', '2023-12-08');

COMMIT;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ VALUES
(1302,'Microgrid Reporting','/microgrid/reporting',1300,1);

-- UPDATE VERSION NUMBER
UPDATE `myems_system_db`.`tbl_versions` SET version='3.12.0RC', release_date='2023-12-01' WHERE id=1;
UPDATE `myems_system_db`.`tbl_versions` SET version='3.12.0', release_date='2023-12-08' WHERE id=1;

COMMIT;
2 changes: 1 addition & 1 deletion myems-admin/views/common/footer-login.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="footer-login">
<div>
<strong>{{'MY_EMS_NAME' | translate}} v3.11.0 <a href="https://myems.io">https://myems.io</a> </strong>
<strong>{{'MY_EMS_NAME' | translate}} v3.12.0 <a href="https://myems.io">https://myems.io</a> </strong>
</div>
</div>
2 changes: 1 addition & 1 deletion myems-admin/views/common/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<strong><a href="https://myems.io">https://myems.io</a></strong>
</div>
<div>
<strong>{{'MY_EMS_NAME' | translate}} v3.11.0</strong>
<strong>{{'MY_EMS_NAME' | translate}} v3.12.0</strong>
</div>
</div>
2 changes: 1 addition & 1 deletion myems-aggregation/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.0
3.12.0
4 changes: 2 additions & 2 deletions myems-api/core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def on_options(req, resp, id_):

@staticmethod
def on_get(req, resp):
result = {"version": 'MyEMS v3.11.0',
"release-date": '2023-11-03',
result = {"version": 'MyEMS v3.12.0',
"release-date": '2023-12-08',
"licensed-to": 'COMMUNITY',
"website": "https://myems.io"}
resp.text = json.dumps(result)
Expand Down
2 changes: 1 addition & 1 deletion myems-cleaning/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.0
3.12.0
2 changes: 1 addition & 1 deletion myems-modbus-tcp/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.0
3.12.0
2 changes: 1 addition & 1 deletion myems-normalization/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.0
3.12.0
1,319 changes: 678 additions & 641 deletions myems-web/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion myems-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "myems",
"version": "3.11.0",
"version": "3.12.0",
"private": true,
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion myems-web/src/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const version = '3.11.0';
export const version = '3.12.0';
export const navbarBreakPoint = 'xl'; // Vertical navbar breakpoint
export const topNavbarBreakpoint = 'lg';
//export const APIBaseURL = 'http://127.0.0.1:8000';
Expand Down

0 comments on commit 5b0de16

Please sign in to comment.