Fix release notes link #38

Merged
Rob-Hague merged 2 commits from releasenotes into master 2025-04-06 14:27:02 +00:00
2 changed files with 5 additions and 6 deletions

View File

@ -9,7 +9,7 @@
<Copyright>Copyright 2017-2020 Alexander Luzgarev</Copyright> <Copyright>Copyright 2017-2020 Alexander Luzgarev</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/mahalex/MatFileHandler</PackageProjectUrl> <PackageProjectUrl>https://github.com/mahalex/MatFileHandler</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/mahalex/MatFileHandler/releases/tag/v$(Version)</PackageReleaseNotes> <PackageReleaseNotes>https://github.com/mahalex/MatFileHandler/releases/tag/v$(PackageVersion)</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile> <PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>Matlab</PackageTags> <PackageTags>Matlab</PackageTags>
<RepositoryUrl>https://github.com/mahalex/MatFileHandler</RepositoryUrl> <RepositoryUrl>https://github.com/mahalex/MatFileHandler</RepositoryUrl>

View File

@ -1,6 +1,6 @@
# MatFileHandler # MatFileHandler
[![NuGet Version](https://img.shields.io/nuget/vpre/MatFileHandler?color=green)](https://www.nuget.org/packages/MatFileHandler/) [![NuGet Version](https://img.shields.io/nuget/vpre/MatFileHandler?color=green)](https://www.nuget.org/packages/MatFileHandler/absoluteLatest)
MatFileHandler is a .NET library for reading and writing MATLAB .mat files MatFileHandler is a .NET library for reading and writing MATLAB .mat files
(of so-called "Level 5"). MatFileHandler supports numerical arrays, (of so-called "Level 5"). MatFileHandler supports numerical arrays,
@ -15,9 +15,8 @@ You can find (partial) technical description of MATLAB object data format
This document briefly describes how to perform simple operations with .mat files This document briefly describes how to perform simple operations with .mat files
using MatFileHandler. using MatFileHandler.
If you have questions and/or ideas, you can [file a new issue] If you have questions and/or ideas, you can [file a new issue](https://github.com/mahalex/MatFileHandler/issues/new)
(https://github.com/mahalex/MatFileHandler/issues/new) or contact me directly at or contact me directly at <mahalex@gmail.com>.
<mahalex@gmail.com>.
## Changelog ## Changelog
@ -205,7 +204,7 @@ classdef Point
end end
end end
``` ```
We omit any methods (and constructos) such a class might have, because they are We omit any methods (and constructors) such a class might have, because they are
not stored when you save an object of a class into a `.mat` file. not stored when you save an object of a class into a `.mat` file.
Imagine that you have a `1x2 Point` object array `p` (an array of two points) Imagine that you have a `1x2 Point` object array `p` (an array of two points)