Skip to content

Commit a7808db

Browse files
committed
release: prepare panicdump v2.0.0
1 parent f37489f commit a7808db

4 files changed

Lines changed: 29 additions & 2 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/prompts
22
/release_prompts
33
/issue_prompts
4-
*.md
4+
/docs_prompts
5+
/refs
6+
/.pytest_cache

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
## v2.0.0
4+
5+
- Release metadata refresh for the verified CI and packaging pipeline.
6+
- GitHub Actions CI #5 passed for strict host builds, Python decoder tests,
7+
package install and external consumer, static analysis, sanitizers, and ARM
8+
verification.
9+
- No implementation behavior changes.
10+
11+
## v1.0.0
12+
13+
- Initial public release history preserved.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.16)
2-
project(panicdump VERSION 1.0.0 LANGUAGES C ASM)
2+
project(panicdump VERSION 2.0.0 LANGUAGES C ASM)
33

44
include(GNUInstallDirs)
55
include(CMakePackageConfigHelpers)

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
panicdump is a small retained-RAM crash dump library for bare-metal Cortex-M
44
systems with an offline decoder.
55

6+
Current release: `v2.0.0`
7+
8+
Verification status:
9+
10+
- GitHub Actions CI #5 passed for host, sanitizer, static-analysis, package,
11+
Python decoder, and ARM verification gates.
12+
613
## What it does
714

815
- Captures fault state into a fixed 192-byte wire image
@@ -73,6 +80,11 @@ Native C host smoke test:
7380
ctest --test-dir build -C Release --output-on-failure
7481
```
7582

83+
## Release Notes
84+
85+
See [CHANGELOG.md](CHANGELOG.md) for the `v2.0.0` release notes and the
86+
preserved `v1.0.0` history.
87+
7688
## Package layout
7789

7890
- `include/` public headers

0 commit comments

Comments
 (0)