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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project aims to follow [Semantic Versioning](https://semver.org/spec/v2

## [Unreleased]

## [1.4.0] - 2026-05-16

### Fixed
- Canonicalize explicit zero-counter `VectorClock` entries away during parse/read paths so structural equality matches vector-clock semantics for missing entries.

Expand Down Expand Up @@ -83,7 +85,8 @@ 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.1...HEAD
[Unreleased]: https://github.com/dexcompiler/Clockworks/compare/v1.4.0...HEAD
[1.4.0]: https://github.com/dexcompiler/Clockworks/compare/v1.3.1...v1.4.0
[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: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This page mirrors the repository root `CHANGELOG.md`.

## [Unreleased]

## [1.4.0] - 2026-05-16

### Fixed
- Canonicalize explicit zero-counter `VectorClock` entries away during parse/read paths so structural equality matches vector-clock semantics for missing entries.

Expand Down
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.2</Version>
<Version>1.4.0</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