Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project aims to follow [Semantic Versioning](https://semver.org/spec/v2

## [Unreleased]

## [1.3.1] - 2026-04-02

### Build
- Add GitHub Actions CI workflow for pushes and pull requests to `main`.
- Add tag-driven release workflow to publish NuGet packages and create GitHub Releases.
- Remove `setup-dotnet` lock-file caching requirement from workflows (no `packages.lock.json` needed).

### Infrastructure
- Add a repository `commit-msg` hook under `.githooks/` to strip auto-injected `Co-authored-by` trailers for Copilot/dexcompiler identities.

## [1.3.0] - 2026-02-19

### Fixed
Expand Down Expand Up @@ -54,6 +64,7 @@ and this project aims to follow [Semantic Versioning](https://semver.org/spec/v2
### Build
- Centralized common build properties in `Directory.Build.props`.

[Unreleased]: https://github.com/dexcompiler/Clockworks/compare/v1.3.0...HEAD
[Unreleased]: https://github.com/dexcompiler/Clockworks/compare/v1.3.1...HEAD
[1.3.1]: https://github.com/dexcompiler/Clockworks/releases/tag/v1.3.1
[1.3.0]: https://github.com/dexcompiler/Clockworks/releases/tag/v1.3.0
[1.2.0]: https://github.com/dexcompiler/Clockworks/releases/tag/v1.2.0
2 changes: 1 addition & 1 deletion src/Clockworks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageId>Clockworks</PackageId>
<AssemblyName>Clockworks</AssemblyName>
<RootNamespace>Clockworks</RootNamespace>
<Version>1.3.0</Version>
<Version>1.3.1</Version>
<Authors>Dexter Ajoku</Authors>
<Company>CloudyBox</Company>
<Description>Clockworks is a .NET library for deterministic, fully controllable time in distributed-system simulations and tests. It provides a simulated TimeProvider with deterministic timer scheduling, TimeProvider-driven timeouts, UUIDv7 generation, and Hybrid Logical Clock (HLC) utilities with lightweight instrumentation.</Description>
Expand Down
Loading