diff --git a/CHANGELOG.md b/CHANGELOG.md index f82e903..4b6a8a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# [1.3.0](https://github.com/heliomarpm/cryptoh/compare/v1.2.0...v1.3.0) (2025-07-07) + + +### Bug Fixes + +* correct typos and update biome configuration ([00abe88](https://github.com/heliomarpm/cryptoh/commit/00abe882299eda53a121d617683a7d0f81241348)) +* remove 'run' from commented vitest command in deploy workflow ([4260450](https://github.com/heliomarpm/cryptoh/commit/42604506205703a1bfdaf017a5282f3e9858bd6c)) + + +### Features + +* add semantic-release npm plugin and enhance release configuration ([1d486f3](https://github.com/heliomarpm/cryptoh/commit/1d486f32f57d1ff51d3270427ec2cd82ba4cecd5)) + # [1.2.0](https://github.com/heliomarpm/cryptoh/compare/v1.1.0...v1.2.0) (2025-06-29) diff --git a/README.md b/README.md index b6b53e6..beab623 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ Help us maintain and improve this template: [url-npm-badge]: https://img.shields.io/npm/v/@heliomarpm/cryptoh.svg [url-npm]: https://www.npmjs.com/package/@heliomarpm/cryptoh -[url-downloads-badge]: https://img.shields.io/npm/dm/@heliomarpm/cryptoh.svg +[url-downloads-badge]: https://img.shields.io/npm/d18m/@heliomarpm/cryptoh.svg [url-downloads]: http://badge.fury.io/js/@heliomarpm/cryptoh.svg [url-deepscan-badge]: https://deepscan.io/api/teams/19612/projects/29822/branches/955507/badge/grade.svg [url-deepscan]: https://deepscan.io/dashboard#view=project&tid=19612&pid=29822&bid=955507 diff --git a/package-lock.json b/package-lock.json index bca6b0b..8e3d614 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@heliomarpm/cryptoh", - "version": "1.1.0", + "version": "1.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@heliomarpm/cryptoh", - "version": "1.1.0", + "version": "1.3.0", "license": "MIT", "devDependencies": { "@biomejs/biome": "^2.0.6", diff --git a/package.json b/package.json index 0a3a457..915239c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@heliomarpm/cryptoh", - "version": "1.1.0", + "version": "1.3.0", "description": "A clean and easy-to-use cryptography helper library for Node.js, built on top of the native crypto module.", "author": "Heliomar P. Marques", "main": "dist/index.js", @@ -24,7 +24,16 @@ "typescript", "signature", "security", - "library" + "library", + "helpers-library", + "helpers", + "utils-library", + "utils", + "sha1", + "sha259", + "sha512", + "md5", + "hash" ], "scripts": { "check": "biome check --write", @@ -81,8 +90,16 @@ "@commitlint/config-conventional" ], "rules": { - "header-max-length": [1, "always", 100], - "body-max-line-length": [1, "always", 100] + "header-max-length": [ + 1, + "always", + 100 + ], + "body-max-line-length": [ + 1, + "always", + 100 + ] } } }