Skip to content

Commit 37c5eca

Browse files
committed
Bump version to 3.7.0
1 parent 86b2f6f commit 37c5eca

File tree

13 files changed

+7859
-10
lines changed

13 files changed

+7859
-10
lines changed

1

Lines changed: 7797 additions & 0 deletions
Large diffs are not rendered by default.

2

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
Help generated
2+
warning: push.default is unset; its implicit value is changing in
3+
Git 2.0 from 'matching' to 'simple'. To squelch this message
4+
and maintain the current behavior after the default changes, use:
5+
6+
git config --global push.default matching
7+
8+
To squelch this message and adopt the new behavior now, use:
9+
10+
git config --global push.default simple
11+
12+
When push.default is set to 'matching', git will push local branches
13+
to the remote branches that already exist with the same name.
14+
15+
In Git 2.0, Git will default to the more conservative 'simple'
16+
behavior, which only pushes the current branch to the corresponding
17+
remote branch that 'git pull' uses to update the current branch.
18+
19+
See 'git help config' and search for 'push.default' for further information.
20+
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
21+
'current' instead of 'simple' if you sometimes use older versions of Git)
22+
23+
Everything up-to-date
24+
Paket failed with:
25+
The remote server returned an error: (400) Bad Request.
26+
Running build failed.
27+
Error:
28+
System.Exception: Error during pushing C:\gsv\projects\YC\QuickGraph\bin\YC.QuickGraph.3.7.0.nupkg.
29+
at Microsoft.FSharp.Core.Operators.FailWith[T](String message)
30+
at Fake.Paket.tasks@151.Invoke(Unit unitVar) in C:\code\fake\src\app\FakeLib\PaketHelper.fs:line 155
31+
at Microsoft.FSharp.Control.AsyncBuilderImpl.callA@851.Invoke(AsyncParams`1 args)
32+
--- End of stack trace from previous location where exception was thrown ---
33+
at Microsoft.FSharp.Control.AsyncBuilderImpl.commit[a](Result`1 res)
34+
at Microsoft.FSharp.Control.CancellationTokenOps.RunSynchronously[a](CancellationToken token, FSharpAsync`1 computation, FSharpOption`1 timeout)
35+
at Microsoft.FSharp.Control.FSharpAsync.RunSynchronously[T](FSharpAsync`1 computation, FSharpOption`1 timeout, FSharpOption`1 cancellationToken)
36+
at Fake.Paket.Push(FSharpFunc`2 setParams) in C:\code\fake\src\app\FakeLib\PaketHelper.fs:line 157
37+
at FSI_0005.Build.clo@189-20.Invoke(Unit _arg11)
38+
at Fake.TargetHelper.runSingleTarget(TargetTemplate`1 target) in C:\code\fake\src\app\FakeLib\TargetHelper.fs:line 492
39+
Status: Failure
40+
1) System.Exception: Error during pushing C:\gsv\projects\YC\QuickGraph\bin\YC.QuickGraph.3.7.0.nupkg.
41+
at Microsoft.FSharp.Core.Operators.FailWith[T](String message)
42+
at Fake.Paket.tasks@151.Invoke(Unit unitVar) in C:\code\fake\src\app\FakeLib\PaketHelper.fs:line 155
43+
at Microsoft.FSharp.Control.AsyncBuilderImpl.callA@851.Invoke(AsyncParams`1 args)
44+
--- End of stack trace from previous location where exception was thrown ---
45+
at Microsoft.FSharp.Control.AsyncBuilderImpl.commit[a](Result`1 res)
46+
at Microsoft.FSharp.Control.CancellationTokenOps.RunSynchronously[a](CancellationToken token, FSharpAsync`1 computation, FSharpOption`1 timeout)
47+
at Microsoft.FSharp.Control.FSharpAsync.RunSynchronously[T](FSharpAsync`1 computation, FSharpOption`1 timeout, FSharpOption`1 cancellationToken)
48+
at Fake.Paket.Push(FSharpFunc`2 setParams) in C:\code\fake\src\app\FakeLib\PaketHelper.fs:line 157
49+
at FSI_0005.Build.clo@189-20.Invoke(Unit _arg11)
50+
at Fake.TargetHelper.runSingleTarget(TargetTemplate`1 target) in C:\code\fake\src\app\FakeLib\TargetHelper.fs:line 492
51+

build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ open SourceLink
3030

3131
// The name of the project
3232
// (used by attributes in AssemblyInfo, name of a NuGet package and directory in 'src')
33-
let project = "QuickGraph"
33+
let project = "YC.QuickGraph"
3434

3535
// Short summary of the project
3636
// (used as description in AssemblyInfo and as a short summary for NuGet package)

src/QuickGraph.Data/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Reflection;
33

44
[assembly: AssemblyTitleAttribute("QuickGraph.Data")]
5-
[assembly: AssemblyProductAttribute("QuickGraph")]
5+
[assembly: AssemblyProductAttribute("YC.QuickGraph")]
66
[assembly: AssemblyDescriptionAttribute("Graph datastructures and algorithms for .NET.")]
77
[assembly: AssemblyVersionAttribute("3.7.0")]
88
[assembly: AssemblyFileVersionAttribute("3.7.0")]

src/QuickGraph.FSA/AssemblyInfo.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
open System.Reflection
33

44
[<assembly: AssemblyTitleAttribute("QuickGraph.FSA")>]
5-
[<assembly: AssemblyProductAttribute("QuickGraph")>]
5+
[<assembly: AssemblyProductAttribute("YC.QuickGraph")>]
66
[<assembly: AssemblyDescriptionAttribute("Graph datastructures and algorithms for .NET.")>]
77
[<assembly: AssemblyVersionAttribute("3.7.0")>]
88
[<assembly: AssemblyFileVersionAttribute("3.7.0")>]

src/QuickGraph.FST/AssemblyInfo.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
open System.Reflection
33

44
[<assembly: AssemblyTitleAttribute("QuickGraph.FST")>]
5-
[<assembly: AssemblyProductAttribute("QuickGraph")>]
5+
[<assembly: AssemblyProductAttribute("YC.QuickGraph")>]
66
[<assembly: AssemblyDescriptionAttribute("Graph datastructures and algorithms for .NET.")>]
77
[<assembly: AssemblyVersionAttribute("3.7.0")>]
88
[<assembly: AssemblyFileVersionAttribute("3.7.0")>]

src/QuickGraph.Glee/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Reflection;
33

44
[assembly: AssemblyTitleAttribute("QuickGraph.Glee")]
5-
[assembly: AssemblyProductAttribute("QuickGraph")]
5+
[assembly: AssemblyProductAttribute("YC.QuickGraph")]
66
[assembly: AssemblyDescriptionAttribute("Graph datastructures and algorithms for .NET.")]
77
[assembly: AssemblyVersionAttribute("3.7.0")]
88
[assembly: AssemblyFileVersionAttribute("3.7.0")]

src/QuickGraph.Graphviz/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Reflection;
33

44
[assembly: AssemblyTitleAttribute("QuickGraph.Graphviz")]
5-
[assembly: AssemblyProductAttribute("QuickGraph")]
5+
[assembly: AssemblyProductAttribute("YC.QuickGraph")]
66
[assembly: AssemblyDescriptionAttribute("Graph datastructures and algorithms for .NET.")]
77
[assembly: AssemblyVersionAttribute("3.7.0")]
88
[assembly: AssemblyFileVersionAttribute("3.7.0")]

src/QuickGraph.Petri/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Reflection;
33

44
[assembly: AssemblyTitleAttribute("QuickGraph.Petri")]
5-
[assembly: AssemblyProductAttribute("QuickGraph")]
5+
[assembly: AssemblyProductAttribute("YC.QuickGraph")]
66
[assembly: AssemblyDescriptionAttribute("Graph datastructures and algorithms for .NET.")]
77
[assembly: AssemblyVersionAttribute("3.7.0")]
88
[assembly: AssemblyFileVersionAttribute("3.7.0")]

src/QuickGraph.Samples/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Reflection;
33

44
[assembly: AssemblyTitleAttribute("QuickGraph.Samples")]
5-
[assembly: AssemblyProductAttribute("QuickGraph")]
5+
[assembly: AssemblyProductAttribute("YC.QuickGraph")]
66
[assembly: AssemblyDescriptionAttribute("Graph datastructures and algorithms for .NET.")]
77
[assembly: AssemblyVersionAttribute("3.7.0")]
88
[assembly: AssemblyFileVersionAttribute("3.7.0")]

0 commit comments

Comments
 (0)