@sysvale/citizen-components 0.1.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -92,3 +92,25 @@ npm run format
92
92
  ```bash
93
93
  npm run type-check
94
94
  ```
95
+
96
+ ## Releases
97
+
98
+ O citizen-components utiliza [semantic-release](https://github.com/semantic-release/semantic-release) para versionamento e publicação automatizados.
99
+
100
+ ### Como funciona
101
+
102
+ Ao mejar um PR na branch `main`, o CI automaticamente:
103
+ - Analisa os commits usando [Conventional Commits](https://www.conventionalcommits.org/)
104
+ - Calcula a próxima versão (patch, minor ou major)
105
+ - Atualiza `package.json` e `package-lock.json`
106
+ - Cria uma release no GitHub com notas geradas automaticamente
107
+ - Publica o pacote no NPM
108
+
109
+ ### Conventional Commits
110
+
111
+ Use os seguintes prefixos nos commits:
112
+
113
+ - `feat:` - Nova funcionalidade (incrementa versão **minor**)
114
+ - `fix:` - Correção de bug (incrementa versão **patch**)
115
+ - `feat!:` ou `BREAKING CHANGE:` - Mudança que quebra compatibilidade (incrementa versão **major**)
116
+ - `docs:`, `chore:`, `style:`, `test:` - Não geram release