Skip to content

Commit abc448b

Browse files
v0.7.0 Release Preparation (#147)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 30883cc commit abc448b

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

HISTORY.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# History
22

3-
### v0.6.1 - 2024-10-22
3+
### v0.7.0 - 2025-02-13
4+
5+
### Maintenance
6+
7+
* Combine `static_code_analysis.yml` with `release_notes.yml` - Issue [#142](https://github.com/sdv-dev/DeepEcho/issues/142) by @R-Palazzo
8+
* Support Python 3.13 - Issue [#136](https://github.com/sdv-dev/DeepEcho/issues/136) by @rwedge
9+
* Update codecov and add flag for integration tests - Issue [#135](https://github.com/sdv-dev/DeepEcho/issues/135) by @pvk-developer
10+
11+
## v0.6.1 - 2024-10-22
412

513
### Bugs Fixed
614

static_code_analysis.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Run started:2024-10-23 14:23:18.958341
1+
Run started:2025-02-13 20:14:59.547454
22

33
Test results:
44
>> 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:
6565
Severity: Low Confidence: High
6666
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
6767
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b101_assert_used.html
68-
Location: ./deepecho/models/par.py:455:8
69-
454 seq_len, batch_size, _ = x.shape
70-
455 assert batch_size == 1
71-
456
68+
Location: ./deepecho/models/par.py:451:8
69+
450 seq_len, batch_size, _ = x.shape
70+
451 assert batch_size == 1
71+
452
7272

7373
--------------------------------------------------
7474
>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
7575
Severity: Low Confidence: High
7676
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
7777
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b101_assert_used.html
78-
Location: ./deepecho/models/par.py:496:8
79-
495 seq_len, batch_size, _input_size = x.shape
80-
496 assert seq_len == 1 and batch_size == 1
81-
497
78+
Location: ./deepecho/models/par.py:492:8
79+
491 seq_len, batch_size, _input_size = x.shape
80+
492 assert seq_len == 1 and batch_size == 1
81+
493
8282

8383
--------------------------------------------------
8484

8585
Code scanned:
86-
Total lines of code: 1467
86+
Total lines of code: 1463
8787
Total lines skipped (#nosec): 0
8888
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0
8989

0 commit comments

Comments
 (0)