Skip to content

Commit de29af1

Browse files
committed
Add microtimer tag-based release workflow
1 parent 5fed5cd commit de29af1

2 files changed

Lines changed: 31 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
16+
- name: Create GitHub release from pushed tag
17+
env:
18+
GH_TOKEN: ${{ github.token }}
19+
run: gh release create "$GITHUB_REF_NAME" --verify-tag --generate-notes

CHANGELOG.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
# Changelog
1+
# Changelog
22

3-
## [1.0.0] - 2026-03-21
3+
## [Unreleased]
44

5-
### Added
6-
- Oneshot and periodic software timers.
7-
- Drift-corrected periodic timing.
8-
- Pause/resume with remaining-time preservation.
9-
- Dynamic interval change.
10-
- Slot reuse via destroy/create.
11-
- Named timer lookup.
12-
- Per-timer and global fire counters.
13-
- 25 tests (69 assertions) using the microtest framework.
5+
### Changed
6+
- Hardened configuration validation and ABI mismatch handling.
7+
- Replaced ambiguous query APIs with status-plus-output contracts.
8+
- Defined wraparound timing, pause/resume, periodic missed-period, and callback busy semantics.
9+
- Added CMake package support, generated configuration headers, and tracked consumer fixtures.
10+
- Replaced the network-dependent test harness with repository-local tests and compile-fail coverage.
11+
- Expanded repository documentation, verification notes, and tag-driven release workflow.
12+
13+
### Notes
14+
- No release tags are present in the local repository snapshot, so no released version is asserted here.

0 commit comments

Comments
 (0)