Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Eirik Tsarpalis committed Feb 14, 2019
1 parent efccc18 commit 954b430
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -102,4 +105,4 @@
* Add Struct, NotStruct and Equality shapes.

### 1.0 - Initial Release
* Initial release
* Initial release
8 changes: 4 additions & 4 deletions src/TypeShape.CSharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}
8 changes: 4 additions & 4 deletions src/TypeShape/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("TypeShape")>]
[<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")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "TypeShape"
let [<Literal>] AssemblyProduct = "TypeShape"
let [<Literal>] AssemblyDescription = "Practical Generic Programming in F#"
let [<Literal>] AssemblyVersion = "6.1"
let [<Literal>] AssemblyFileVersion = "6.1"
let [<Literal>] AssemblyVersion = "6.1.1"
let [<Literal>] AssemblyFileVersion = "6.1.1"

0 comments on commit 954b430

Please sign in to comment.