diff --git a/HISTORY.md b/HISTORY.md index 3e8fdcd..8cf7718 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,14 @@ # History -### v0.6.1 - 2024-10-22 +### v0.7.0 - 2025-02-13 + +### Maintenance + +* Combine `static_code_analysis.yml` with `release_notes.yml` - Issue [#142](https://github.com/sdv-dev/DeepEcho/issues/142) by @R-Palazzo +* Support Python 3.13 - Issue [#136](https://github.com/sdv-dev/DeepEcho/issues/136) by @rwedge +* Update codecov and add flag for integration tests - Issue [#135](https://github.com/sdv-dev/DeepEcho/issues/135) by @pvk-developer + +## v0.6.1 - 2024-10-22 ### Bugs Fixed diff --git a/static_code_analysis.txt b/static_code_analysis.txt index b44d391..2e919e9 100644 --- a/static_code_analysis.txt +++ b/static_code_analysis.txt @@ -1,4 +1,4 @@ -Run started:2024-10-23 14:23:18.958341 +Run started:2025-02-13 20:14:59.547454 Test results: >> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. @@ -65,25 +65,25 @@ Test results: Severity: Low Confidence: High CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html) More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b101_assert_used.html - Location: ./deepecho/models/par.py:455:8 -454 seq_len, batch_size, _ = x.shape -455 assert batch_size == 1 -456 + Location: ./deepecho/models/par.py:451:8 +450 seq_len, batch_size, _ = x.shape +451 assert batch_size == 1 +452 -------------------------------------------------- >> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. Severity: Low Confidence: High CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html) More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b101_assert_used.html - Location: ./deepecho/models/par.py:496:8 -495 seq_len, batch_size, _input_size = x.shape -496 assert seq_len == 1 and batch_size == 1 -497 + Location: ./deepecho/models/par.py:492:8 +491 seq_len, batch_size, _input_size = x.shape +492 assert seq_len == 1 and batch_size == 1 +493 -------------------------------------------------- Code scanned: - Total lines of code: 1467 + Total lines of code: 1463 Total lines skipped (#nosec): 0 Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0