updated version number to v1.8.2
parent
154645d84b
commit
6fd3fddf99
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -16,6 +16,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
### Removed
|
||||
- None.
|
||||
|
||||
## [v1.8.2] - 2022-03-16
|
||||
### Added
|
||||
- None.
|
||||
|
||||
### Changed
|
||||
- replaced cnx.disconnect() with cnx.close() according to PEP 249
|
||||
- updated docker compose version to 3.8
|
||||
- updated README
|
||||
- renamed database files
|
||||
|
||||
### Fixed
|
||||
- fixed common time slot issues in aggregation service
|
||||
|
||||
### Removed
|
||||
- None.
|
||||
|
||||
## [v1.8.1] - 2022-03-05
|
||||
### Added
|
||||
- added integration testing plan to README
|
||||
|
@ -746,7 +762,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/v1.8.1...HEAD
|
||||
[Unreleased]: https://github.com/MyEMS/myems/compare/v1.8.2...HEAD
|
||||
[v1.8.2]: https://github.com/MyEMS/myems/compare/v1.8.1...v1.8.2
|
||||
[v1.8.1]: https://github.com/MyEMS/myems/compare/v1.8.0...v1.8.1
|
||||
[v1.8.0]: https://github.com/MyEMS/myems/compare/v1.7.2...v1.8.0
|
||||
[v1.7.2]: https://github.com/MyEMS/myems/compare/v1.7.1...v1.7.2
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<div class="footer-login">
|
||||
<div>
|
||||
<strong>{{'MY_EMS_NAME' | translate}} v1.8.1 <a href="https://myems.io">https://myems.io</a> </strong>
|
||||
<strong>{{'MY_EMS_NAME' | translate}} v1.8.2 <a href="https://myems.io">https://myems.io</a> </strong>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
<strong><a href="https://myems.io">https://myems.io</a></strong>
|
||||
</div>
|
||||
<div>
|
||||
<strong>{{'MY_EMS_NAME' | translate}} v1.8.1</strong>
|
||||
<strong>{{'MY_EMS_NAME' | translate}} v1.8.2</strong>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1248,6 +1248,6 @@ USE `myems_system_db`;
|
|||
INSERT INTO `myems_system_db`.`tbl_versions`
|
||||
(`id`, `version`, `release_date`)
|
||||
VALUES
|
||||
(1, '1.8.1', '2022-03-05');
|
||||
(1, '1.8.2', '2022-03-16');
|
||||
|
||||
COMMIT;
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
-- ---------------------------------------------------------------------------------------------------------------------
|
||||
-- WARNING: BACKUP YOUR DATABASE BEFORE UPGRADING
|
||||
-- THIS SCRIPT IS ONLY FOR UPGRADING 1.8.1 TO 1.8.2
|
||||
-- THE CURRENT VERSION CAN BE FOUND AT `myems_system_db`.`tbl_versions`
|
||||
-- ---------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
START TRANSACTION;
|
||||
|
||||
-- UPDATE VERSION NUMBER
|
||||
UPDATE `myems_system_db`.`tbl_versions` SET version='1.8.2', release_date='2022-03-16' WHERE id=1;
|
||||
|
||||
COMMIT;
|
|
@ -15,8 +15,8 @@ class VersionItem:
|
|||
@staticmethod
|
||||
def on_get(req, resp):
|
||||
|
||||
result = {"version": 'MyEMS v1.8.1',
|
||||
"release-date": '2022-03-05',
|
||||
result = {"version": 'MyEMS v1.8.2',
|
||||
"release-date": '2022-03-16',
|
||||
"website": "https://myems.io"}
|
||||
resp.text = json.dumps(result)
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "myems",
|
||||
"version": "1.8.1",
|
||||
"version": "1.8.2",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-free": "^5.15.1",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export const version = '1.8.1';
|
||||
export const version = '1.8.2';
|
||||
export const navbarBreakPoint = 'xl'; // Vertical navbar breakpoint
|
||||
export const topNavbarBreakpoint = 'lg';
|
||||
//export const APIBaseURL = 'http://127.0.0.1:8000';
|
||||
|
|
Loading…
Reference in New Issue