Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriktsarpalis committed Apr 22, 2015
1 parent d40c8ea commit df828f3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.0.17
* Fix support for ISerializable structs.

### 1.0.16
* Refine assembly loading code.

Expand Down
1 change: 0 additions & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
source https://www.nuget.org/api/v2
source C:\Users\eirik\SkyDrive\Development\Nuget

nuget Nuget.CommandLine 2.8.3
nuget FsCheck 1.0.0
Expand Down
6 changes: 3 additions & 3 deletions src/FsPickler.CSharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// <auto-generated/>
using System.Reflection;

[assembly: AssemblyVersionAttribute("1.0.16")]
[assembly: AssemblyFileVersionAttribute("1.0.16")]
[assembly: AssemblyVersionAttribute("1.0.17")]
[assembly: AssemblyFileVersionAttribute("1.0.17")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "1.0.16";
internal const string Version = "1.0.17";
}
}
6 changes: 3 additions & 3 deletions src/FsPickler.Json/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace System
open System.Reflection

[<assembly: AssemblyVersionAttribute("1.0.16")>]
[<assembly: AssemblyFileVersionAttribute("1.0.16")>]
[<assembly: AssemblyVersionAttribute("1.0.17")>]
[<assembly: AssemblyFileVersionAttribute("1.0.17")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.0.16"
let [<Literal>] Version = "1.0.17"
6 changes: 3 additions & 3 deletions src/FsPickler/assemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace System
open System.Reflection

[<assembly: AssemblyVersionAttribute("1.0.16")>]
[<assembly: AssemblyFileVersionAttribute("1.0.16")>]
[<assembly: AssemblyVersionAttribute("1.0.17")>]
[<assembly: AssemblyFileVersionAttribute("1.0.17")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.0.16"
let [<Literal>] Version = "1.0.17"

0 comments on commit df828f3

Please sign in to comment.