Skip to content

Commit f68f71a

Browse files
committed
0.4.0
1 parent 9dfd127 commit f68f71a

6 files changed

Lines changed: 52 additions & 1 deletion

File tree

.idea/artifacts/kulid_js_0_4_0.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/kulid_jvm_0_4_0.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/kulid_wasm_js_0_4_0.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/kulid_wasm_wasi_0_4_0.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
**Note on versioning:** This project follows semantic versioning with an emphasis on ABI compatibility. Major version numbers will be bumped when changes break ABI compatibility, even if the API remains backward compatible.
99

10+
## [0.4.0] - 2025-11-01
11+
12+
### Breaking Changes
13+
Version 0.4.0 is _binary_ incompatible with 0.3.0. This means library consumers will have to re-compile against the newest version of the library, as opposed to just dropping in a compiled library artifact. It _is_, however, _source_ compatible with 0.3.0, meaning consumers do not have to modify source that interfaced with this library.
14+
15+
#### Source-compatible breaking changes
16+
None!
17+
18+
#### Binary-compatible breaking changes
19+
- Added monotonicity API
20+
21+
### Added
22+
- Added monotonicity support.
23+
- This implementation is not thread-safe yet! Thread-safety will be added in a future release.
24+
25+
### Changed
26+
- Bump Kotlin version to 2.2.21
27+
- Various other dependency bumps
28+
1029
## [0.3.0] - 2025-08-03
1130

1231
### Added

kulid/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
}
1818

1919
group = "dev.phillipslabs"
20-
version = "0.3.0"
20+
version = "0.4.0"
2121

2222
kotlin {
2323
explicitApi()

0 commit comments

Comments
 (0)