Skip to content

Commit

Permalink
[publish] Release 6.0.0 - see CHANGELOG.md for details.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamboyCoding committed Dec 22, 2024
1 parent f76ffd6 commit 0d521fb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- [Tomlet Changelog](#tomlet-changelog)
- [Contents](#contents)
- [6.0.0](#600)
- [5.4.0](#540)
- [5.3.1](#531)
- [5.3.0](#530)
Expand Down Expand Up @@ -44,6 +45,14 @@
- [1.0.1](#101)
- [1.0.0](#100)

## 6.0.0

- Adds .NET trimming compatibility and annotations to hopefully prevent classes that are passed to Tomlet from having their members stripped.
- Makes behavior of passing `null` to methods in `TomletMain` more consistent - they will all now return null if you pass null, rather than some throwing, some returning null, and some returning an empty table/doc.
- This is a breaking change, hence the bump to 6.0.0.
- Implements deserialization of dictionaries using primitives as keys. Thanks to [@Sprixitite](https://github.com/Sprixitite) in [#44](https://github.com/SamboyCoding/Tomlet/pull/44)
- Adds an option to ignore invalid enum values (i.e. an invalid name) when deserializing.

## 5.4.0

- Adds an option to ignore non-public members when de/serializing. Thanks to [@Sprixitite](https://github.com/Sprixitite) in [#43](https://github.com/SamboyCoding/Tomlet/pull/43)
Expand Down
2 changes: 1 addition & 1 deletion Tomlet/Tomlet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<RepositoryUrl>https://github.com/SamboyCoding/Tomlet.git</RepositoryUrl>
<TargetFrameworks>net6;net7;net8;net9;netstandard2.0;netframework3.5</TargetFrameworks>
<Title>Tomlet</Title>
<Version>5.4.0</Version>
<Version>6.0.0</Version>
<IsTrimmable>true</IsTrimmable>
<NoWarn>SYSLIB0050</NoWarn>

Expand Down

0 comments on commit 0d521fb

Please sign in to comment.