Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.7.0 Release Preparation #147

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
20 changes: 10 additions & 10 deletions static_code_analysis.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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

Expand Down
Loading