Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jul 21, 2016
1 parent 3f62573 commit f0237b5
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 98 deletions.
8 changes: 4 additions & 4 deletions src/Chessie/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyTitleAttribute("Chessie")>]
[<assembly: AssemblyProductAttribute("Chessie")>]
[<assembly: AssemblyDescriptionAttribute("Railway-oriented programming for .NET")>]
[<assembly: AssemblyVersionAttribute("0.5.0")>]
[<assembly: AssemblyFileVersionAttribute("0.5.0")>]
[<assembly: AssemblyVersionAttribute("0.6.0")>]
[<assembly: AssemblyFileVersionAttribute("0.6.0")>]
[<assembly: ExtensionAttribute()>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "0.5.0"
let [<Literal>] InformationalVersion = "0.5.0"
let [<Literal>] Version = "0.6.0"
let [<Literal>] InformationalVersion = "0.6.0"
66 changes: 34 additions & 32 deletions src/Chessie/project.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,38 @@
{
"version": "0.5.0",
"buildOptions": {
"debugType": "portable",
"compilerName": "fsc",
"version": "0.6.0",
"buildOptions": {
"debugType": "portable",
"compilerName": "fsc",
"define": [],
"xmlDoc": true,
"compile": {
"includeFiles": [
"ErrorHandling.fs"
]
}
},
"dependencies": {
"NETStandard.Library": "1.6.0",
"FSharp.Core": "4.0.1.7-alpha"
},
"frameworks": {
"netstandard1.6": {
"buildOptions": {
"define": [
],
"xmlDoc": true,
"compile": {
"includeFiles": [
"ErrorHandling.fs"
]
}
},
"dependencies": {
"NETStandard.Library": "1.6.0",
"FSharp.Core": "4.0.1.7-alpha"
},
"frameworks": {
"netstandard1.6": {
"buildOptions": {
"define": [
"NETSTANDARD1_5",
"CORE_CLR"
]
}
}
"NETSTANDARD1_5",
"CORE_CLR"
]
}
}
},
"tools": {
"dotnet-compile-fsc": {
"version": "1.0.0-preview2-*",
"imports": "dnxcore50"
},
"tools": {
"dotnet-compile-fsc": {
"version": "1.0.0-preview2-*",
"imports": "dnxcore50"
},
"dotnet-mergenupkg": { "target": "package", "version": "1.0.*" }
"dotnet-mergenupkg": {
"target": "package",
"version": "1.0.*"
}
}
}
}
39 changes: 19 additions & 20 deletions tests/Chessie.CSharp.Test/project.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
{
"version": "1.0.0-*",

"dependencies": {
"NUnit": "3.4.1",
"dotnet-test-nunit": "3.4.0-beta-1",
"Chessie": { "target": "project" }
},

"testRunner": "nunit",

"frameworks": {
"netcoreapp1.0": {
"imports": "portable-net45+win8",
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"type": "platform"
}
}
"version": "0.6.0",
"dependencies": {
"NUnit": "3.4.1",
"dotnet-test-nunit": "3.4.0-beta-1",
"Chessie": {
"target": "project"
}
},
"testRunner": "nunit",
"frameworks": {
"netcoreapp1.0": {
"imports": "portable-net45+win8",
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"type": "platform"
}
}
}
}
}
}
81 changes: 39 additions & 42 deletions tests/Chessie.Tests/project.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,42 @@
{
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable",
"compilerName": "fsc",
"compile": {
"includeFiles": [
"../../paket-files/test/forki/FsUnit/FsUnit.fs",
"TrialTests.fs",
"BuilderTests.fs",
"SimpleValidation.fs",
"NightClubs.fs"
]
}
},

"dependencies": {
"FSharp.Core": "4.0.1.7-alpha",
"NUnit": "3.4.1",
"dotnet-test-nunit": "3.4.0-beta-1",
"Chessie": { "target": "project" }
},

"testRunner": "nunit",

"frameworks": {
"netcoreapp1.0": {
"imports": "portable-net45+win8",
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"type": "platform"
}
}
}
},

"tools": {
"dotnet-compile-fsc": {
"version": "1.0.0-preview2-*",
"imports": "dnxcore50"
"version": "0.6.0",
"buildOptions": {
"debugType": "portable",
"compilerName": "fsc",
"compile": {
"includeFiles": [
"../../paket-files/test/forki/FsUnit/FsUnit.fs",
"TrialTests.fs",
"BuilderTests.fs",
"SimpleValidation.fs",
"NightClubs.fs"
]
}
},
"dependencies": {
"FSharp.Core": "4.0.1.7-alpha",
"NUnit": "3.4.1",
"dotnet-test-nunit": "3.4.0-beta-1",
"Chessie": {
"target": "project"
}
},
"testRunner": "nunit",
"frameworks": {
"netcoreapp1.0": {
"imports": "portable-net45+win8",
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"type": "platform"
}
}
}
},
"tools": {
"dotnet-compile-fsc": {
"version": "1.0.0-preview2-*",
"imports": "dnxcore50"
}

}
}
}

0 comments on commit f0237b5

Please sign in to comment.