Skip to content

Commit

Permalink
Release v1.2.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Jan 9, 2020
1 parent f8c819f commit 3561492
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ All notable changes to NetVips will be documented in this file. See [here](CHANG

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0-rc1] - 2020-01-07
## [1.2.0-rc2] - 2020-01-09
### Added
- Add support for true streaming ([#33](https://github.com/kleisauke/net-vips/issues/33)).
- See the [blogpost](https://libvips.github.io/libvips/2019/11/29/True-streaming-for-libvips.html) and the [tutorial](https://kleisauke.github.io/net-vips/tutorial/getting_started.html#custom-sources-and-targets) for more information.
Expand All @@ -14,6 +14,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Add `image.RefCount()` to get the reference count of an image.
- Add `NetVips.GetOperations()` to get a list of operations available within the libvips library.
- Add `VipsProgress` struct to the public API.
- Add `image.WriteToMemory(out ulong)` to write the image to an unformatted C-style array.
- This is a low-level operation, make sure you free the returned memory with `NetVips.Free`.

### Changed
- The `image.SetType()` function has been renamed to `image.Set()`.
Expand Down Expand Up @@ -116,7 +118,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Added
- First release!

[1.2.0-rc1]: https://github.com/kleisauke/net-vips/compare/v1.1.0...v1.2.0-rc1
[1.2.0-rc2]: https://github.com/kleisauke/net-vips/compare/v1.1.0...v1.2.0-rc2
[1.1.0]: https://github.com/kleisauke/net-vips/compare/v1.0.7...v1.1.0
[1.0.7]: https://github.com/kleisauke/net-vips/compare/v1.0.6...v1.0.7
[1.0.6]: https://github.com/kleisauke/net-vips/compare/v1.0.5...v1.0.6
Expand Down
2 changes: 1 addition & 1 deletion build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<BuildNumber Condition="'$(APPVEYOR_BUILD_NUMBER)' != ''">$(APPVEYOR_BUILD_NUMBER)</BuildNumber>
<BuildNumber Condition="'$(BuildNumber)' == ''">0</BuildNumber>

<PrereleaseLabel>-rc1</PrereleaseLabel>
<PrereleaseLabel>-rc2</PrereleaseLabel>
<PrereleaseLabel Condition="'$(APPVEYOR_BUILD_NUMBER)' != ''">-develop</PrereleaseLabel>

<PrereleaseLabelConstants></PrereleaseLabelConstants>
Expand Down

0 comments on commit 3561492

Please sign in to comment.