Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
nengyuanzhang committed May 21, 2024
2 parents 59544c8 + 265a673 commit 4efd4c5
Show file tree
Hide file tree
Showing 13 changed files with 568 additions and 710 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

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

## [v4.5.0] - 2024-05-21
### Added
- added new protocols dtu-rtu, dtu-tcp, dtu-mqtt and mqtt-zhongxian
- added latest value to data source points table in myems-admin
- added menus for plan functions in database
Expand All @@ -18,7 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- fixed issues of optional svg textarea for equipment and combined equipment in myems-admin
- fixed translation issue for zh_CN in Excel exporter
### Removed
-
- None

## [v4.4.0] - 2024-04-17
### Added
Expand Down Expand Up @@ -1674,7 +1680,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/v4.4.0...HEAD
[Unreleased]: https://github.com/MyEMS/myems/compare/v4.5.0...HEAD
[4.5.0]: https://github.com/MyEMS/myems/compare/v4.5.0...v4.4.0
[4.4.0]: https://github.com/MyEMS/myems/compare/v4.4.0...v4.3.0
[4.3.0]: https://github.com/MyEMS/myems/compare/v4.3.0...v4.2.0
[4.2.0]: https://github.com/MyEMS/myems/compare/v4.2.0...v4.1.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 @@ -1966,7 +1966,7 @@ USE `myems_system_db`;
INSERT INTO `myems_system_db`.`tbl_versions`
(`id`, `version`, `release_date`)
VALUES
(1, '4.5.0RC', '2024-05-18');
(1, '4.5.0', '2024-05-21');

COMMIT;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,6 @@ CREATE INDEX `tbl_energy_storage_power_station_discharge_hourly_index_1`
(`energy_storage_power_station_id`, `start_datetime_utc`);

-- UPDATE VERSION NUMBER
UPDATE `myems_system_db`.`tbl_versions` SET version='4.5.0RC', release_date='2024-05-18' WHERE id=1;
UPDATE `myems_system_db`.`tbl_versions` SET version='4.5.0', release_date='2024-05-21' 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}} v4.4.0 <a href="https://myems.io">https://myems.io</a> </strong>
<strong>{{'MY_EMS_NAME' | translate}} v4.5.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}} v4.4.0</strong>
<strong>{{'MY_EMS_NAME' | translate}} v4.5.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 @@
4.4.0
4.5.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 v4.4.0',
"release-date": '2024-04-17',
result = {"version": 'MyEMS v4.5.0',
"release-date": '2024-05-21',
"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 @@
4.4.0
4.5.0
2 changes: 1 addition & 1 deletion myems-modbus-tcp/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.4.0
4.5.0
2 changes: 1 addition & 1 deletion myems-normalization/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.4.0
4.5.0

0 comments on commit 4efd4c5

Please sign in to comment.