Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
nengyuanzhang committed Feb 17, 2024
2 parents 8316bb5 + 0bfef6a commit a291da6
Show file tree
Hide file tree
Showing 13 changed files with 190 additions and 136 deletions.
13 changes: 10 additions & 3 deletions 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

## [v4.2.0] - 2024-02-18

### Added
- None
### Changed
Expand All @@ -16,10 +23,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- updated shopfloor export, import and clone functions in myems-api
- updated store export, import and clone functions in myems-api
- updated tenant export, import and clone functions in myems-api
-
### Fixed
- updated run action of rule in myems-api
- updated run action of advanced report in myems-api
### Fixed
- fixed warnings in myems-web
- fixed issue of CardSummary in myems-web
- fixed issue of demo data in database
Expand Down Expand Up @@ -1602,7 +1608,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.1.0...HEAD
[Unreleased]: https://github.com/MyEMS/myems/compare/v4.2.0...HEAD
[4.2.0]: https://github.com/MyEMS/myems/compare/v4.2.0...v4.1.0
[4.1.0]: https://github.com/MyEMS/myems/compare/v4.1.0...v4.0.0
[4.0.0]: https://github.com/MyEMS/myems/compare/v4.0.0...v3.12.0
[3.12.0]: https://github.com/MyEMS/myems/compare/v3.12.0...v3.11.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 @@ -1899,7 +1899,7 @@ USE `myems_system_db`;
INSERT INTO `myems_system_db`.`tbl_versions`
(`id`, `version`, `release_date`)
VALUES
(1, '4.1.0', '2024-02-08');
(1, '4.2.0', '2024-02-18');

COMMIT;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
START TRANSACTION;

-- UPDATE VERSION NUMBER
UPDATE `myems_system_db`.`tbl_versions` SET version='4.2.0RC', release_date='2024-03-01' WHERE id=1;
UPDATE `myems_system_db`.`tbl_versions` SET version='4.2.0', release_date='2024-02-18' 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.1.0 <a href="https://myems.io">https://myems.io</a> </strong>
<strong>{{'MY_EMS_NAME' | translate}} v4.2.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.1.0</strong>
<strong>{{'MY_EMS_NAME' | translate}} v4.2.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.1.0
4.2.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.1.0',
"release-date": '2024-02-08',
result = {"version": 'MyEMS v4.2.0',
"release-date": '2024-02-18',
"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.1.0
4.2.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.1.0
4.2.0
2 changes: 1 addition & 1 deletion myems-normalization/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.1.0
4.2.0
Loading

0 comments on commit a291da6

Please sign in to comment.