Skip to content

Commit

Permalink
change default releasetype to debugoptimized
Browse files Browse the repository at this point in the history
to match a typical package build

also bump version to 1.0.4
  • Loading branch information
jcupitt committed Oct 9, 2023
1 parent ae0df07 commit 574dc42
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
21 changes: 13 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
## master

## 1.0.4, 9./10/23

* change default buildtype to debugoptimized [jcupitt]
* fix readthedocs integration [jcupitt]

## 1.0.3, 7/10/23

- improve handling of OV and OL [jcupitt]
- better frame data print [jcupitt]
- improve ExtendedOffsetTable handling [jcupitt]
* improve handling of OV and OL [jcupitt]
* better frame data print [jcupitt]
* improve ExtendedOffsetTable handling [jcupitt]

## 1.0.2, 5/10/23

- fix a crash and some error pileups [bgilbert]
- fix some retun values [bgilbert]
* fix a crash and some error pileups [bgilbert]
* fix some return values [bgilbert]

## 1.0.1, 3/10/23

- fix MSVC compiler warnings [jcupitt]
- only use `__attribute__((constructor))` if supported [bgilbert]
* fix MSVC compiler warnings [jcupitt]
* only use `__attribute__((constructor))` if supported [bgilbert]

## 1.0.0, 2/10/23

- first release!
* first release!

4 changes: 3 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ project(
# turn off asserts etc. in release mode
'b_ndebug=if-release',
'warning_level=2',
# do a release (optimised) build by default
'buildtype=debugoptimized',
],
license : 'MIT',
meson_version : '>=0.50',
version : '1.0.3'
version : '1.0.4'
)
if not meson.is_subproject()
meson.add_dist_script(
Expand Down

0 comments on commit 574dc42

Please sign in to comment.