spring-boot4-skill 1.6.0 → 1.6.1
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/CHANGELOG.md +8 -0
- package/README.md +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.6.1] - 2026-02-21
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Docs:** README Publishing section: added Semantic Versioning note (patch vs minor vs major) and examples.
|
|
13
|
+
|
|
14
|
+
[1.6.1]: https://github.com/AyrtonAldayr/agent-skill-java-spring-framework/compare/v1.6.0...v1.6.1
|
|
15
|
+
|
|
8
16
|
## [1.6.0] - 2026-02-21
|
|
9
17
|
|
|
10
18
|
### Added
|
package/README.md
CHANGED
|
@@ -164,9 +164,11 @@ Once installed, Claude Code acts as a **Senior Spring Boot 4 architect**:
|
|
|
164
164
|
|
|
165
165
|
## Publishing to npm
|
|
166
166
|
|
|
167
|
+
We use [Semantic Versioning](https://semver.org/): **MAJOR.MINOR.PATCH**. Small changes (docs, config, bugfixes) = **patch** (e.g. `1.6.0` → `1.6.1`). New features = **minor** (`1.6.0` → `1.7.0`). Breaking changes = **major** (`1.6.0` → `2.0.0`).
|
|
168
|
+
|
|
167
169
|
When releasing a new version:
|
|
168
170
|
|
|
169
|
-
1. **Bump version** in `package.json` (e.g. `1.
|
|
171
|
+
1. **Bump version** in `package.json` (e.g. `1.6.0` → `1.6.1` for patch, or `1.7.0` for minor).
|
|
170
172
|
2. **Update CHANGELOG.md** — add an entry under the new version (Added / Changed / Fixed).
|
|
171
173
|
3. **Commit, tag and push:**
|
|
172
174
|
```bash
|
package/package.json
CHANGED