Skip to content

Commit 8d156e4

Browse files
authored
Merge pull request #2 from heliomarpm/develop
🔀 develop → main: 2025-06-01
2 parents e22fa54 + b6a4b87 commit 8d156e4

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.github/workflows/4.publish-npm.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
outputs:
1212
has_code_changes: ${{ steps.check_files.outputs.has_changes }}
13-
skip_publish: false # ⚠️ Publicação desativada. Altere para false para habilitar a publicação
1413

1514
steps:
1615
- name: Checkout
@@ -48,7 +47,7 @@ jobs:
4847
4948
publish-npm:
5049
needs: check_code_changes
51-
if: needs.check_code_changes.outputs.has_code_changes == 'true' && needs.check_code_changes.outputs.skip_publish != 'true'
50+
if: needs.check_code_changes.outputs.has_code_changes == 'true'
5251
runs-on: ubuntu-latest
5352
permissions:
5453
contents: read
@@ -83,7 +82,7 @@ jobs:
8382

8483
publish-gpr:
8584
needs: check_code_changes
86-
if: needs.check_code_changes.outputs.has_code_changes == 'true' && needs.check_code_changes.outputs.skip_publish != 'true'
85+
if: needs.check_code_changes.outputs.has_code_changes == 'true'
8786
runs-on: ubuntu-latest
8887
permissions:
8988
contents: read

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# 1.0.0 (2025-06-01)
2+
3+
4+
### Features
5+
6+
* **core:** :sparkles: implementar funções criptográficas e validação de entrada ([38b2607](https://github.com/heliomarpm/cryptoh/commit/38b26072412f0661a4358c4f91375e546672023c))
7+
* **docs:** :sparkles: update site configuration and homepage content ([21f17a2](https://github.com/heliomarpm/cryptoh/commit/21f17a2080ed412121921e61542a961ae9db4e98))
8+
* **package:** :sparkles: renomear pacote para @heliomarpm/cryptoh ([45e822a](https://github.com/heliomarpm/cryptoh/commit/45e822afef5dd7bb57ecf3315ba24658dd3b29c2))
9+
* **tests:** :sparkles: adicionar testes para funções de hash e geração de chave ([de16909](https://github.com/heliomarpm/cryptoh/commit/de169095935394f587c9ce90e34a570d6df46983))

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
2-
"private": true,
32
"name": "@heliomarpm/cryptoh",
4-
"version": "0.0.0",
3+
"version": "1.0.0",
54
"description": "A clean and easy-to-use cryptography helper library for Node.js, built on top of the native crypto module.",
65
"author": "Heliomar P. Marques",
76
"main": "dist/index.js",

0 commit comments

Comments
 (0)