Skip to content

Commit 12f5250

Browse files
committed
Release v3.0.0-rc1
1 parent bb3cb6f commit 12f5250

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to NetVips will be documented in this file. See [here](CHANG
33

44
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).
55

6-
## [3.0.0] - TBD
6+
## [3.0.0-rc1] - 2024-10-14
77
### Added
88
- Add support for a single shared libvips binary on Windows ([#211](https://github.com/kleisauke/net-vips/issues/211)).
99
- Add `ReadOnlySpan<T>` / `ReadOnlyMemory<T>` overloads ([#225](https://github.com/kleisauke/net-vips/issues/225)).
@@ -245,7 +245,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
245245
### Added
246246
- First release!
247247

248-
[3.0.0]: https://github.com/kleisauke/net-vips/compare/v2.4.2...v3.0.0
248+
[3.0.0-rc1]: https://github.com/kleisauke/net-vips/compare/v2.4.2...v3.0.0-rc1
249249
[2.4.2]: https://github.com/kleisauke/net-vips/compare/v2.4.1...v2.4.2
250250
[2.4.1]: https://github.com/kleisauke/net-vips/compare/v2.4.0...v2.4.1
251251
[2.4.0]: https://github.com/kleisauke/net-vips/compare/v2.3.1...v2.4.0

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
image: Visual Studio 2022
22

33
# Version format
4-
version: 2.4.2.{build}
4+
version: 3.0.0.{build}
55

66
init:
77
- git config --global core.autocrlf true

build/common.props

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@
1616

1717
<LangVersion>12</LangVersion>
1818

19-
<Major>2</Major>
20-
<Minor>4</Minor>
21-
<Revision>2</Revision>
19+
<Major>3</Major>
20+
<Minor>0</Minor>
21+
<Revision>0</Revision>
2222

2323
<BuildNumber Condition="'$(APPVEYOR_BUILD_NUMBER)' != ''">$(APPVEYOR_BUILD_NUMBER)</BuildNumber>
2424
<BuildNumber Condition="'$(BuildNumber)' == ''">0</BuildNumber>
2525

26+
<PrereleaseLabel>-rc1</PrereleaseLabel>
2627
<PrereleaseLabel Condition="'$(APPVEYOR_BUILD_NUMBER)' != ''">-develop</PrereleaseLabel>
2728

2829
<PrereleaseLabelConstants></PrereleaseLabelConstants>

0 commit comments

Comments
 (0)