Skip to content

Commit 96e6c12

Browse files
committed
Release: prepare v0.12.0
1 parent f6de309 commit 96e6c12

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ All notable changes to this project will be documented in this file.
33

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

6-
## [Unreleased] (0.12.0)
6+
## [0.12.0] - 2023-01-07
77
### Added
88
- TeX's environment support with only one environment for now: `\begin{pmatrix}` (see [#329][pull-329]).
99

10+
### Changed
11+
- The project is now built on .NET 7 SDK and C# 11 (shouldn't change the supported framework set).
12+
1013
## [0.11.0] - 2021-08-31
1114
### Added
1215
- [#262: Add \mod operator from amsmath][pull-262]
@@ -215,4 +218,5 @@ This was the initially published version. It consisted entirely of the original
215218
[0.9.0]: https://github.com/ForNeVeR/wpf-math/compare/0.8.0...0.9.0
216219
[0.10.0]: https://github.com/ForNeVeR/wpf-math/compare/0.9.0...v0.10.0
217220
[0.11.0]: https://github.com/ForNeVeR/wpf-math/compare/v0.10.0...v0.11.0
218-
[Unreleased]: https://github.com/ForNeVeR/wpf-math/compare/v0.11.0...HEAD
221+
[0.12.0]: https://github.com/ForNeVeR/wpf-math/compare/v0.11.0...v0.12.0
222+
[Unreleased]: https://github.com/ForNeVeR/wpf-math/compare/v0.12.0...HEAD

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The MIT License
33

44
Copyright (c) 2010 Alex Regueiro
55

6-
Copyright (c) 2021 WPF-Math Contributors
6+
Copyright (c) 2023 WPF-Math Contributors
77

88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Documentation
106106
Build and Maintenance Instructions
107107
----------------------------------
108108

109-
Build the project using [.NET SDK 7.0][dotnet-sdk] or later. WPF-Math requires C# 11 and F# 7 support. Here's the build and test script:
109+
Build the project using [.NET SDK 7.0][dotnet-sdk] or later. Here's the build and test script:
110110

111111
```console
112112
$ dotnet build --configuration Release

src/WpfMath/WpfMath.csproj

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,22 @@
77
</PropertyGroup>
88
<PropertyGroup>
99
<PackageId>WpfMath</PackageId>
10-
<Version>0.11.0</Version>
10+
<Version>0.12.0</Version>
1111
<Title>WPF-Math</Title>
1212
<Authors>ForNeVeR</Authors>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<PackageProjectUrl>https://github.com/ForNeVeR/wpf-math</PackageProjectUrl>
1515
<RepositoryUrl>https://github.com/ForNeVeR/wpf-math.git</RepositoryUrl>
1616
<AssemblyTitle>WPF-Math</AssemblyTitle>
17-
<PackageReleaseNotes>Changed:
18-
Added:
19-
- #262: Add \mod operator from amsmath
17+
<PackageReleaseNotes>Added:
18+
- TeX's environment support with only one environment for now: `\begin{pmatrix}` (see [#329][pull-329]).
2019

21-
Fixed:
22-
- #304: SystemFontFamilies does not return all FontFamilies in Chinese System
20+
Changed:
21+
- The project is now built on .NET 7 SDK and C# 11 (shouldn't change the supported framework set).
2322
</PackageReleaseNotes>
2423
<PackageTags>wpf;latex;formula</PackageTags>
2524
<Description>.NET library for rendering mathematical formulae using the LaTeX typsetting style, for the WPF framework.</Description>
26-
<Copyright>Copyright © Alex Regueiro 2010; Copyright © WPF-Math Contributors 2021</Copyright>
25+
<Copyright>Copyright © Alex Regueiro 2010; Copyright © WPF-Math Contributors 2023</Copyright>
2726

2827
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2928
<EmbedUntrackedSources>true</EmbedUntrackedSources>

0 commit comments

Comments
 (0)