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
+
1
5
# 0.11.0
2
6
3
7
** Deserialization:**
Original file line number Diff line number Diff line change 2
2
<PropertyGroup >
3
3
<Title >PhpSerializerNET</Title >
4
4
<TargetFrameworks >net5.0;net6.0</TargetFrameworks >
5
- <Version >0.11 .0</Version >
5
+ <Version >1.0 .0</Version >
6
6
<Authors >StringEpsilon</Authors >
7
7
<Summary >A library for working with the PHP serialization format.</Summary >
8
8
<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
11
11
12
12
Usage is rather simple:
13
13
14
- [ Serializing] ( ./docs /Usage/Serializing.md )
14
+ [ Serializing] ( https://stringepsilon.github.io/PhpSerializerNET /Usage/Serializing)
15
15
``` c#
16
16
using PhpSerializerNET ;
17
17
18
18
string serializedData = PhpSerialization .Serialize (myObject );
19
19
```
20
20
21
- and [ Deserializing] ( ./docs /Usage/Deserializing.md )
21
+ and [ Deserializing] ( https://stringepsilon.github.io/PhpSerializerNET /Usage/Deserializing)
22
22
23
23
``` c#
24
24
using PhpSerializerNET ;
25
25
26
26
object myObject = PhpSerialization .Deserialize (serializedData );
27
27
```
28
28
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 ) .
30
34
31
35
## Why?
32
36
You can’t perform that action at this time.
0 commit comments