Skip to content

Commit c53af12

Browse files
committed
Release 3.4.7
1 parent a2c69b7 commit c53af12

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

Source/Svg.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2828
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2929
<PackageReleaseNotes>
30-
Fixed a regression in loading embedded images (see Release Notes: http://svg-net.github.io/SVG/doc/ReleaseNotes.html).
30+
New SVGOptions class, support for .NET 8, and bug fixes (see Release Notes: http://svg-net.github.io/SVG/doc/ReleaseNotes.html).
3131
</PackageReleaseNotes>
3232
<PackageProjectUrl>https://github.com/svg-net/SVG</PackageProjectUrl>
3333
<PackageIconUrl>https://www.w3.org/Icons/SVG/svg-logo-v.png</PackageIconUrl>

Source/version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "3.4",
3+
"version": "3.4.7",
44
"publicReleaseRefSpec": [
5-
"^refs/tags/v\\d+\\.\\d+" // we release using tags starting with vN.N
5+
"^refs/heads/master" // we release from master branch
66
],
77
"cloudBuild": {
88
"buildNumber": {

doc/ReleaseNotes.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
# SVG.NET Release Notes
22
The release versions are NuGet releases.
33

4-
## Unreleased
4+
## [Version 3.4.7](https://www.nuget.org/packages/Svg/3.4.7) (2024-02-22)
55

66
### Changes
77
* Added: A class, `SvgOptions`, with external css parameters for styling or transforming the `SvgDocument`.
8-
* Split tests SVG/PNG files into Issues and W3C Test Suite. W3C Test Suite files are not automatically downloaded.
9-
* Repository clean-up, reducing the download zip size from 22MB to 4.5MB.
108
* Added: Support for .NET 4.7.2, .NET 4.8.1 and .NET 8.0.
11-
* Added: A new project, `Tests/Svg.Tests.Common` for sharing codes between test applications.
129
* [Breaking change] The support for .NET 8 resulted in a breaking change to the signature of methods in `CoordinateParser`.
1310
* The changes are needed to fix a compiler error `CS8352`.
1411
* The use of read-only arguments as referenced variable is not necessary.
15-
* The use of `ref` in the function arguements resulting in `CS8352` error are all removed.
12+
* The use of `ref` in the function arguments resulting in `CS8352` error are all removed.
1613

1714
### Enhancements
1815
* made exceptions serializable to be able to cross AppDomain boundaries (see [#826](https://github.com/svg-net/SVG/pull/826))
@@ -21,6 +18,12 @@ The release versions are NuGet releases.
2118
* fixed XML namespace prefixes are also applied for nodes declaring them (see [PR #1106](https://github.com/svg-net/SVG/pull/1106))
2219
* fixed Parameter is not valid (see [PR #1131](https://github.com/svg-net/SVG/pull/1131))
2320

21+
### Infrastructure
22+
* Split tests SVG/PNG files into Issues and W3C Test Suite. W3C Test Suite files are not automatically downloaded.
23+
* Repository clean-up, reducing the download zip size from 22MB to 4.5MB.
24+
* Added: A new project, `Tests/Svg.Tests.Common` for sharing codes between test applications.
25+
26+
2427
## [Version 3.4.6](https://www.nuget.org/packages/Svg/3.4.6) (2023-11-16)
2528

2629
### Fixes

0 commit comments

Comments
 (0)