diff --git a/README.md b/README.md index 8955fd0..12ce77f 100644 --- a/README.md +++ b/README.md @@ -10,16 +10,22 @@ Why use codecs? ## Install -Install from NuGet for [Fable](https://www.nuget.org/packages/Thoth.Json.Codec/) or [.NET](https://www.nuget.org/packages/Thoth.Json.Net.Codec/): +Install from NuGet for [Fable and .NET](https://www.nuget.org/packages/Thoth.Json.Codec): ```bash dotnet add package Thoth.Json.Codec + +# For reflection-based automatic codecs +dotnet add package Thoth.Json.Codec.Auto ``` Or using Paket: ```bash paket add Thoth.Json.Codec + +# For reflection-based automatic codecs +paket add Thoth.Json.Codec.Auto ``` ## Instructions diff --git a/thoth-json-codec-auto/thoth-json-codec-auto.fsproj.paket.template b/thoth-json-codec-auto/thoth-json-codec-auto.fsproj.paket.template index 8826f80..6234831 100644 --- a/thoth-json-codec-auto/thoth-json-codec-auto.fsproj.paket.template +++ b/thoth-json-codec-auto/thoth-json-codec-auto.fsproj.paket.template @@ -1,6 +1,6 @@ type project id Thoth.Json.Codec.Auto -version 0.0.1 +version 0.0.6 authors github.com/njlr title Thoth.Json.Codec.Auto tags fable fsharp json thoth codec diff --git a/thoth-json-codec/thoth-json-codec.fsproj.paket.template b/thoth-json-codec/thoth-json-codec.fsproj.paket.template index 2e96f45..8a608a4 100644 --- a/thoth-json-codec/thoth-json-codec.fsproj.paket.template +++ b/thoth-json-codec/thoth-json-codec.fsproj.paket.template @@ -1,6 +1,6 @@ type project id Thoth.Json.Codec -version 0.0.5 +version 0.0.6 authors github.com/njlr title Thoth.Json.Codec tags fable fsharp json thoth codec