Skip to content
Open
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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Help us maintain and improve this template:
<!-- other badges -->
[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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 21 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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
]
}
}
}
Loading