Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Veykril committed Jul 16, 2019
1 parent 0e7a478 commit 62c4384
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.3.0] - 2019-07-16

### Changed

- OutOfMemory errors now panic, unless returned by allocating `try_*` functions
Expand All @@ -24,7 +26,7 @@ corresponding functions on Array<ImageCodec> instead

- incorrect interpretation of image stride

## [0.2.0] - 2018-05-11
## [0.2.0] - 2019-05-11

### Changed

Expand All @@ -38,26 +40,27 @@ corresponding functions on Array<ImageCodec> instead
- Debug implementation for most types
- Travis CI

## [0.1.2] - 2018-04-17
## [0.1.2] - 2019-04-17

### Changed

- Fix building on non-windows platforms

## [0.1.1] - 2018-04-16
## [0.1.1] - 2019-04-16

### Changed

- Fix enum type mismatch on non-windows platforms

## 0.1.0 - 2018-04-16
## 0.1.0 - 2019-04-16

### Added

- Initial release


[Unreleased]: https://github.com/Veykril/blend2d-rs/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/Veykril/blend2d-rs/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/Veykril/blend2d-rs/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/Veykril/blend2d-rs/compare/v0.1.2...v0.2.0
[0.1.2]: https://github.com/Veykril/blend2d-rs/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/Veykril/blend2d-rs/compare/v0.1.0...v0.1.1
1 change: 1 addition & 0 deletions blend2d-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ fn main() -> io::Result<()> {
add_source(&mut cfg, BLEND2D_SOURCE_PATH)?;
add_source(&mut cfg, ASMJIT_SOURCE_PATH)?;
cfg.cpp(true)
.warnings(false)
.flag_if_supported("-static")
.flag_if_supported("-std=c++17")
.flag_if_supported("/std:c++latest")
Expand Down

0 comments on commit 62c4384

Please sign in to comment.