From 954b4307471229a314b462c6bc4a76949ed0e018 Mon Sep 17 00:00:00 2001 From: Eirik Tsarpalis Date: Thu, 14 Feb 2019 16:21:43 +0000 Subject: [PATCH] bump version --- RELEASE_NOTES.md | 5 ++++- src/TypeShape.CSharp/Properties/AssemblyInfo.cs | 8 ++++---- src/TypeShape/AssemblyInfo.fs | 8 ++++---- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 56bfa07..371b08e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,6 @@ +### 6.1.1 +* Remove Sourcelink nuget dependency. + ### 6.1 * Expose generic clone function in main library. * Add cancellable generic iter combinator. @@ -102,4 +105,4 @@ * Add Struct, NotStruct and Equality shapes. ### 1.0 - Initial Release -* Initial release \ No newline at end of file +* Initial release diff --git a/src/TypeShape.CSharp/Properties/AssemblyInfo.cs b/src/TypeShape.CSharp/Properties/AssemblyInfo.cs index 30757dd..8bfb8f2 100644 --- a/src/TypeShape.CSharp/Properties/AssemblyInfo.cs +++ b/src/TypeShape.CSharp/Properties/AssemblyInfo.cs @@ -4,14 +4,14 @@ [assembly: AssemblyTitleAttribute("TypeShape.CSharp")] [assembly: AssemblyProductAttribute("TypeShape")] [assembly: AssemblyDescriptionAttribute("Practical Generic Programming in F#")] -[assembly: AssemblyVersionAttribute("6.1")] -[assembly: AssemblyFileVersionAttribute("6.1")] +[assembly: AssemblyVersionAttribute("6.1.1")] +[assembly: AssemblyFileVersionAttribute("6.1.1")] namespace System { internal static class AssemblyVersionInformation { internal const System.String AssemblyTitle = "TypeShape.CSharp"; internal const System.String AssemblyProduct = "TypeShape"; internal const System.String AssemblyDescription = "Practical Generic Programming in F#"; - internal const System.String AssemblyVersion = "6.1"; - internal const System.String AssemblyFileVersion = "6.1"; + internal const System.String AssemblyVersion = "6.1.1"; + internal const System.String AssemblyFileVersion = "6.1.1"; } } diff --git a/src/TypeShape/AssemblyInfo.fs b/src/TypeShape/AssemblyInfo.fs index 18d734d..5a8d508 100644 --- a/src/TypeShape/AssemblyInfo.fs +++ b/src/TypeShape/AssemblyInfo.fs @@ -5,13 +5,13 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "TypeShape" let [] AssemblyProduct = "TypeShape" let [] AssemblyDescription = "Practical Generic Programming in F#" - let [] AssemblyVersion = "6.1" - let [] AssemblyFileVersion = "6.1" + let [] AssemblyVersion = "6.1.1" + let [] AssemblyFileVersion = "6.1.1"