diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-15 22:21:00 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-15 22:26:58 +0100 |
| commit | d406f42ad85f642d0ad8dae2ef1ac743abc43ec3 (patch) | |
| tree | 3b2508f4d3a36e5a0703f0eb92faefb8826238a1 | |
| parent | 8daa7da7acc6809056249261ad50cd3896625886 (diff) | |
| -rw-r--r-- | CHANGELOG | 22 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | package.json | 2 |
3 files changed, 24 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..be59f77 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,22 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## Unreleased + +## 1.0.1 - 2025-12-15 + +### Added + +* A new `make types` to generate the type definitions. +* Type definitions now included with the package. +* This CHANGELOG. + +## 1.0.0 - 2025-12-15 + +### Added + +* Initial release. @@ -50,4 +50,4 @@ licenses: sbom @echo "** Image **" @sbom-utility license list -q --input-file image-sbom.json -.PHONY: default prepare test coverage format lint release ci +.PHONY: default prepare test coverage format lint release ci types diff --git a/package.json b/package.json index 0991b0e..4d33776 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wmap-parser", - "version": "1.0.0", + "version": "1.0.1", "description": "Parser for wmap formatted Wardley Map files.", "type": "module", "main": "src/index.js", |