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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## main

## 1.2.0, 11/01/2025

* fix build with uthash \< 2.3.0 [bgilbert]
* explicitly fail if macOS universal build is attempted [bgilbert]
* better handling of implicit mode in dcm-dump [jcupitt]
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ project(
],
license : 'MIT',
meson_version : '>=0.50',
version : '1.1.0'
version : '1.2.0'
)
if not meson.is_subproject()
meson.add_dist_script(
Expand All @@ -36,7 +36,7 @@ endif
# 2. Backward-compatible ABI change: bump minor, reset patch
# 3. Other, eg. bugfix: bump patch
abi_version_major = 1
abi_version_minor = 1
abi_version_minor = 2
abi_version_patch = 0

abi_version = '@0@.@1@.@2@'.format(
Expand Down
Loading