Skip to content

Commit 637fe19

Browse files
committed
intx 0.14.0
Bump version: 0.13.0 → 0.14.0
1 parent 260d636 commit 637fe19

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.13.0
2+
current_version = 0.14.0
33
tag = True
44
sign_tags = True
55
tag_message = intx {new_version}

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ Documentation of all notable changes to the **intx** project.
55
The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

8+
## [0.14.0] — 2025-11-14
9+
10+
### Added
11+
12+
- Add `ctz()` (count trailing zeros).
13+
[#350](https://github.com/chfast/intx/pull/350)
14+
- Add `bit_test()`.
15+
[#351](https://github.com/chfast/intx/pull/351)
16+
- Add support for [Conan](https://conan.io) package manager.
17+
[#352](https://github.com/chfast/intx/pull/352)
18+
19+
### Fixed
20+
- Fix `udivrem` dead branch causing static analysis failures
21+
[#349](https://github.com/chfast/intx/pull/349)
22+
23+
824
## [0.13.0] — 2025-05-14
925

1026
## Added
@@ -278,6 +294,7 @@ and this project adheres to [Semantic Versioning].
278294
[#99](https://github.com/chfast/intx/pull/99)
279295

280296

297+
[0.14.0]: https://github.com/chfast/intx/releases/v0.14.0
281298
[0.13.0]: https://github.com/chfast/intx/releases/v0.13.0
282299
[0.12.1]: https://github.com/chfast/intx/releases/v0.12.1
283300
[0.12.0]: https://github.com/chfast/intx/releases/v0.12.0

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if(INTX_TESTING)
2727
endif()
2828

2929
project(intx LANGUAGES CXX)
30-
set(PROJECT_VERSION 0.13.0)
30+
set(PROJECT_VERSION 0.14.0)
3131

3232
cable_configure_compiler(NO_STACK_PROTECTION)
3333

0 commit comments

Comments
 (0)