Skip to content

Commit 15b4c11

Browse files
committed
Release: prepare v0.13.1
1 parent cb884c6 commit 15b4c11

File tree

3 files changed

+10
-27
lines changed

3 files changed

+10
-27
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ 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+
## [0.13.1] - 2023-01-29
7+
### Fixed
8+
- [#350: Unable to resolve dependency 'WpfMath.Shared'][issue-350]
9+
610
## [0.13.0] - 2023-01-27
711
### Changed
812
- **(Breaking change.)** The library is now distributed in the form of two assemblies: `WpfMath` and `WpfMath.Shared` (as a future cross-platform core of the library).
@@ -207,6 +211,7 @@ This was the initially published version. It consisted entirely of the original
207211
[issue-257]: https://github.com/ForNeVeR/wpf-math/issues/257
208212
[issue-275]: https://github.com/ForNeVeR/wpf-math/issues/275
209213
[issue-304]: https://github.com/ForNeVeR/wpf-math/issues/304
214+
[issue-350]: https://github.com/ForNeVeR/wpf-math/issues/350
210215
[pull-53]: https://github.com/ForNeVeR/wpf-math/pull/53
211216
[pull-54]: https://github.com/ForNeVeR/wpf-math/pull/54
212217
[pull-58]: https://github.com/ForNeVeR/wpf-math/pull/58
@@ -247,4 +252,5 @@ This was the initially published version. It consisted entirely of the original
247252
[0.11.0]: https://github.com/ForNeVeR/wpf-math/compare/v0.10.0...v0.11.0
248253
[0.12.0]: https://github.com/ForNeVeR/wpf-math/compare/v0.11.0...v0.12.0
249254
[0.13.0]: https://github.com/ForNeVeR/wpf-math/compare/v0.12.0...v0.13.0
250-
[Unreleased]: https://github.com/ForNeVeR/wpf-math/compare/v0.13.0...HEAD
255+
[0.13.1]: https://github.com/ForNeVeR/wpf-math/compare/v0.13.0...v0.13.1
256+
[Unreleased]: https://github.com/ForNeVeR/wpf-math/compare/v0.13.1...HEAD

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup Label="Versioning">
4-
<Version>0.13.0</Version>
4+
<Version>0.13.1</Version>
55
</PropertyGroup>
66

77
<PropertyGroup Condition=" '$(MSBuildProjectExtension)' == '.csproj' ">

src/WpfMath/WpfMath.csproj

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -14,31 +14,8 @@
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-
19-
- (Breaking change.) The library is now distributed in the form of two assemblies: WpfMath and WpfMath.Shared (as a future cross-platform core of the library).
20-
Both of the assemblies are still distributed in the same NuGet package.
21-
A lot of types were moved to WpfMath.Shared assembly (preserving their namespaces).
22-
- (Breaking change.) It is no longer recommended to create instances of TexEnvironment using the public constructor. Use WpfMath.Rendering.WpfTeXEnvironment::Create instead.
23-
- (Breaking change.) It is no longer recommended to create instances of TexFormulaParser using public constructors. Use WpfMath.Parsers.WpfTeXFormulaParser::Instance instead.
24-
- (Breaking change.) WPF-specific WpfMath.Rendering.IBrush has been replaced with WpfMath.Rendering.IBrush in most of the public interfaces. Use WpfMath.Rendering.WpfBrushExtensions to convert back and forth to the WPF type.
25-
- (Breaking change.) WpfMath.Rendering.IElementRenderer has been updated:
26-
- RenderGlyphRun has been replaced with RenderCharacter method (not reliant on any WPF-specific types),
27-
- RenderRectangle now receives an instance of a new WpfMath.Rendering.Rectangle type (decoupled from WPF).
28-
- WpfMath.TexRenderer is now obsolete. Consult the documentation on new recommended ways to perform custom rendering. There are new extension methods in two classes (WpfMath.Rendering.WpfTeXFormulaExtensions and WpfMath.Rendering.TeXFormulaExtensions) that are the main way to render formulae now.
29-
- (Breaking change.) WpfMath.TexFormnula::GetRenderer is gone. Create a TexRenderer using constructor (obsolete) or use the aforementioned extension methods instead.
30-
31-
[Added]
32-
33-
- WpfMath.CharInfo: a new public type to work with a font character. Use WpfMath.Fonts.WpfCharInfoEx::GetGlyphRun if you need to get a System.Windows.Media.GlyphRun from it.
34-
- WpfMath.Rendering.WpfTeXFormulaExtensions to render a WpfMath.TexFormula into a System.Windows.Media.Imaging.BitmapSource or System.Windows.Media.Geometry.
35-
- New classes for WPF-Math porting to platforms other than WPF (consult the WpfMath.Rendering.IElementRenderer interface and TexFormulaParser constructor parameters to know more).
36-
- WpfMath.Colors.RgbaColor as a new portable color representation.
37-
- WpfMath.Fonts.IFontProvider: implement this interface to provide alternate font reading functionality.
38-
- WpfMath.Fonts.ITeXFont: implement this interface to provide access to a platform-specific font resource.
39-
- WpfMath.Rendering.IBrushFactory: implement this interface to provide access to creation of platform-specific solid-colored brushes.
40-
- WpfMath.TeXFontMetrics that contains some measurements of a font glyph.
41-
- An utility Result struct is now public.
17+
<PackageReleaseNotes>[Fixed]
18+
- #350: Unable to resolve dependency 'WpfMath.Shared' (https://github.com/ForNeVeR/wpf-math/issues/350)
4219
</PackageReleaseNotes>
4320
<PackageTags>wpf;latex;formula</PackageTags>
4421
<Description>.NET library for rendering mathematical formulae using the LaTeX typsetting style, for the WPF framework.</Description>

0 commit comments

Comments
 (0)