Skip to content

Commit 43964db

Browse files
authored
Merge pull request #93 from nanotaboada/release/v1.1.1-cannavaro
docs(changelog): prepare release notes for v1.1.1-cannavaro
2 parents 55c93f4 + 5e21b27 commit 43964db

2 files changed

Lines changed: 15 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
### Changed
13+
14+
### Fixed
15+
16+
### Removed
17+
18+
## [1.1.1 - Cannavaro] - 2026-04-12
19+
20+
### Added
21+
1222
- CodeQL Advanced workflow (`.github/workflows/codeql.yml`) for static security analysis on push, pull request, and weekly schedule; covers `actions` and `rust` languages (#77)
1323
- Coverage reporting with `cargo-tarpaulin` and Codecov integration (#42)
1424
- `codecov.yml` with 80% minimum threshold on `src/services/`, `src/routes/`, `src/repositories/` (#42)
@@ -25,6 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2535

2636
### Fixed
2737

38+
- API Reference table in `README.md`: corrected `PUT /players/squadnumber/:squadnumber` response from `200 OK` to `204 No Content`
39+
2840
### Removed
2941

3042
- Pre-seeded `storage/players-sqlite3.db` file and `storage/` directory from repository; Diesel `embed_migrations!()` initialises and seeds the database on first start (#79)
@@ -107,6 +119,7 @@ Release codenames follow an A-Z sequence using Ballon d'Or award nominees surnam
107119
| Y | `yayatoure` | Yaya Touré | Ivory Coast | 2011, 2013 |
108120
| Z | `zlatan` | Zlatan Ibrahimović | Sweden | 2013, 2015 |
109121

110-
[unreleased]: https://github.com/nanotaboada/rust-samples-rocket-restful/compare/v1.1.0-benzema...HEAD
122+
[unreleased]: https://github.com/nanotaboada/rust-samples-rocket-restful/compare/v1.1.1-cannavaro...HEAD
123+
[1.1.1 - Cannavaro]: https://github.com/nanotaboada/rust-samples-rocket-restful/compare/v1.1.0-benzema...v1.1.1-cannavaro
111124
[1.1.0 - Benzema]: https://github.com/nanotaboada/rust-samples-rocket-restful/compare/v1.0.0-aguero...v1.1.0-benzema
112125
[1.0.0 - Agüero]: https://github.com/nanotaboada/rust-samples-rocket-restful/releases/tag/v1.0.0-aguero

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ graph RL
111111
| `GET` | `/players/:id` | Get player by ID | `200 OK` |
112112
| `GET` | `/players/squadnumber/:squadnumber` | Get player by squad number | `200 OK` |
113113
| `POST` | `/players` | Create new player | `201 Created` |
114-
| `PUT` | `/players/squadnumber/:squadnumber` | Update player by squad number | `200 OK` |
114+
| `PUT` | `/players/squadnumber/:squadnumber` | Update player by squad number | `204 No Content` |
115115
| `DELETE` | `/players/squadnumber/:squadnumber` | Remove player by squad number | `204 No Content` |
116116
| `GET` | `/health` | Health check | `200 OK` |
117117

0 commit comments

Comments
 (0)