Skip to content

Commit 9d4e7dc

Browse files
committed
Version 2.0.1
1 parent 1edbd62 commit 9d4e7dc

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
[GH #40](https://github.com/StringEpsilon/PhpSerializerNET/issues/40)
88
- Related to the above: Some nested arrays or arrays with object values would never implicetly deserialize into a
99
`List<object>` because the check if the array keys are consecutive integers was faulty.
10+
- Do not throw when a property or field is decorated with it's own name such as `[PhpProperty["A"]] public int A;`.
1011

1112
# 2.0.0 (2024-11-13)
1213

PhpSerializerNET.Test/PhpSerializerNET.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
3+
<TargetFrameworks>net9.0</TargetFrameworks>
44
<IsPackable>false</IsPackable>
55
</PropertyGroup>
66
<ItemGroup>

PhpSerializerNET/PhpSerializerNET.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Title>PhpSerializerNET</Title>
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<LangVersion>12.0</LangVersion>
6-
<Version>2.0.0</Version>
6+
<Version>2.0.1</Version>
77
<Authors>StringEpsilon</Authors>
88
<Summary>A library for working with the PHP serialization format.</Summary>
99
<PackageTags>php-serialization, php-serializer, php-deserializer</PackageTags>
@@ -19,6 +19,7 @@
1919
</PropertyGroup>
2020
<ItemGroup>
2121
<None Include="..\LICENSE" Pack="true" PackagePath="/" />
22+
<None Include="..\README.md" Pack="true" PackagePath="/"/>
2223
<None Include="..\assets\icon.png" Pack="true" PackagePath="\" />
2324
</ItemGroup>
2425
</Project>

0 commit comments

Comments
 (0)