diff --git a/CHANGELOG.md b/CHANGELOG.md index c553364..af66b87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.13.2](https://github.com/scanoss/scanoss.js/compare/v0.13.0...v0.13.1) (2024-05-20) + ### [0.13.1](https://github.com/scanoss/scanoss.js/compare/v0.13.0...v0.13.1) (2024-05-15) ### [0.13.0](https://github.com/scanoss/scanoss.js/compare/v0.12.2...v0.13.0) (2024-05-13) diff --git a/package.json b/package.json index 35e3cfa..58621ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scanoss", - "version": "0.13.1", + "version": "0.13.2", "description": "The SCANOSS JS package provides a simple, easy to consume module for interacting with SCANOSS APIs/Engine.", "main": "build/main/index.js", "typings": "build/main/index.d.ts", diff --git a/src/cli/commands/crypto.ts b/src/cli/commands/crypto.ts index 5d6631c..ae41c8e 100644 --- a/src/cli/commands/crypto.ts +++ b/src/cli/commands/crypto.ts @@ -10,6 +10,7 @@ import { Tree } from '../../sdk/tree/Tree'; import { DependencyFilter } from '../../sdk/tree/Filters/DependencyFilter'; import { CryptoCfg } from '../../sdk/Cryptography/CryptoCfg'; import fs from 'fs'; +import { BinaryFilter } from '../../sdk/tree/Filters/BinaryFilter'; export async function cryptoHandler(rootPath: string, options: any): Promise { rootPath = rootPath.replace(/\/$/, ''); // Remove trailing slash if exists @@ -30,7 +31,7 @@ export async function cryptoHandler(rootPath: string, options: any): Promise