File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1+ # 1.0.0
2+
3+ This is just 0.11.0 packaged as a new version to mark it as stable.
4+
15# 0.11.0
26
37** Deserialization:**
Original file line number Diff line number Diff line change 22 <PropertyGroup >
33 <Title >PhpSerializerNET</Title >
44 <TargetFrameworks >net5.0;net6.0</TargetFrameworks >
5- <Version >0.11 .0</Version >
5+ <Version >1.0 .0</Version >
66 <Authors >StringEpsilon</Authors >
77 <Summary >A library for working with the PHP serialization format.</Summary >
88 <PackageTags >php-serialization, php-serializer, php-deserializer</PackageTags >
Original file line number Diff line number Diff line change @@ -11,22 +11,26 @@ This is a .NET library for working with the [PHP serialization format](https://e
1111
1212Usage is rather simple:
1313
14- [ Serializing] ( ./docs /Usage/Serializing.md )
14+ [ Serializing] ( https://stringepsilon.github.io/PhpSerializerNET /Usage/Serializing)
1515``` c#
1616using PhpSerializerNET ;
1717
1818string serializedData = PhpSerialization .Serialize (myObject );
1919```
2020
21- and [ Deserializing] ( ./docs /Usage/Deserializing.md )
21+ and [ Deserializing] ( https://stringepsilon.github.io/PhpSerializerNET /Usage/Deserializing)
2222
2323``` c#
2424using PhpSerializerNET ;
2525
2626object myObject = PhpSerialization .Deserialize (serializedData );
2727```
2828
29- [ Detailed documentation can be found here] ( ./docs/README.md ) .
29+ [ Detailed documentation can be found here] ( https://stringepsilon.github.io/PhpSerializerNET ) .
30+
31+ ## Changelog
32+
33+ [ Detailed list of changes for each version since initial release here.] ( https://github.com/StringEpsilon/PhpSerializerNET/blob/main/CHANGELOG.md ) .
3034
3135## Why?
3236
You can’t perform that action at this time.
0 commit comments