Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

scoring-matrices

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scoring-matrices - npm Package Compare versions

Comparing version
0.3.2
to
0.3.3
+8
-1
CHANGELOG.md

@@ -9,5 +9,12 @@ # Changelog

## [Unreleased]
[Unreleased]: https://github.com/althonos/scoring-matrices/compare/v0.3.2...HEAD
[Unreleased]: https://github.com/althonos/scoring-matrices/compare/v0.3.3...HEAD
## [v0.3.3] - 2025-08-13
[v0.3.3]: https://github.com/althonos/scoring-matrices/compare/v0.3.2...v0.3.3
### Fixed
- Memory leak caused by `ScoringMatrix` not deallocating data on object deletion.
## [v0.3.2] - 2025-06-16

@@ -14,0 +21,0 @@ [v0.3.2]: https://github.com/althonos/scoring-matrices/compare/v0.3.1...v0.3.2

+1
-1
Metadata-Version: 2.2
Name: scoring-matrices
Version: 0.3.2
Version: 0.3.3
Summary: Dependency free, Cython-compatible scoring matrices to use with biological sequences.

@@ -5,0 +5,0 @@ Keywords: bioinformatics,sequence,substitution,matrix,score

@@ -7,3 +7,3 @@ [build-system]

name = "scoring-matrices"
version = "0.3.2"
version = "0.3.3"
description = "Dependency free, Cython-compatible scoring matrices to use with biological sequences."

@@ -10,0 +10,0 @@ readme = "README.md"

@@ -190,5 +190,11 @@ # distutils: language = c

self._matrix = NULL
self._alphabet = NULL
self._size = 0
self._shape[0] = self._shape[1] = 0
def __dealloc__(self):
free(self._data)
free(self._matrix)
free(self._alphabet)
def __init__(

@@ -195,0 +201,0 @@ self,