@lippelt/srd-core 0.1.5 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,32 @@
1
+ # Changelog
2
+
3
+ Todas as mudanças notáveis deste pacote são documentadas aqui.
4
+
5
+ O formato segue [Keep a Changelog](https://keepachangelog.com/pt-BR/1.1.0/)
6
+ e o projeto adere ao [Versionamento Semântico](https://semver.org/lang/pt-BR/).
7
+
8
+
9
+ ## [1.0.0] — 2026-07-13
10
+
11
+ ### Mudou
12
+ - **Marco de estabilidade 1.0.0.** O contrato público do pacote é
13
+ promovido a estável — sem mudanças de API em relação à série 0.1.x.
14
+ A partir daqui, quebras de compatibilidade seguem SemVer (major).
15
+
16
+ ## [0.1.5] — 2026-06-19
17
+ - Suporte a `System.partyResources` (pools de party/sessão).
18
+
19
+ ## [0.1.4] — 2026-06-08
20
+ - Release de manutenção.
21
+
22
+ ## [0.1.3] — 2026-06-06
23
+ - Ponto de extensão `SystemNpcHooks` para geração de NPCs.
24
+
25
+ ## [0.1.2] — 2026-06-05
26
+ - Docs: README em PT-BR com termos oficiais.
27
+
28
+ ## [0.1.1] — 2026-06-05
29
+ - Docs: README em PT-BR com termos oficiais.
30
+
31
+ ## [0.1.0] — 2026-06-04
32
+ - Primeira publicação no npm.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lippelt/srd-core",
3
- "version": "0.1.5",
3
+ "version": "1.0.0",
4
4
  "description": "Plugin core for tabletop RPG system modules (types + registry). Each system ships in its own package.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -16,7 +16,8 @@
16
16
  "files": [
17
17
  "dist",
18
18
  "README.md",
19
- "LICENSE"
19
+ "LICENSE",
20
+ "CHANGELOG.md"
20
21
  ],
21
22
  "publishConfig": {
22
23
  "access": "public"