Skip to content

Commit 0d81e2b

Browse files
committed
Merge branch 'release/0.7.0'
* release/0.7.0: (build) Corrected .gitignore file (build) Deleted .DS_Store file (build) Added GRM Config file (maint) Updated to latest Cake Added fix for GitHub's new TLS 1.2 requirement.
2 parents f063852 + 8b753f5 commit 0d81e2b

File tree

5 files changed

+23
-6
lines changed

5 files changed

+23
-6
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,10 +311,10 @@ tools/**
311311
# OpenCover UI analysis results
312312
OpenCover/
313313

314-
# Azure Stream Analytics local run output
314+
# Azure Stream Analytics local run output
315315
ASALocalRun/
316316

317317
# Build Related
318318
BuildArtifacts/*
319319

320-
Source/.DS_Store
320+
.DS_Store

GitReleaseManager.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
issue-labels-include:
2+
- Breaking change
3+
- Feature
4+
- Bug
5+
- Improvement
6+
- Documentation
7+
issue-labels-exclude:
8+
- Build
9+
issue-labels-alias:
10+
- name: Documentation
11+
header: Documentation
12+
plural: Documentation

Source/GitReleaseManager.Cli/Program.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ namespace GitReleaseManager.Cli
1111
using System.Globalization;
1212
using System.IO;
1313
using System.Linq;
14+
using System.Net;
1415
using System.Text;
1516
using System.Threading.Tasks;
1617
using CommandLine;
@@ -28,6 +29,10 @@ public static class Program
2829
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope", Justification = "Not required")]
2930
private static int Main(string[] args)
3031
{
32+
// Just add the TLS 1.2 protocol to the Service Point manager until
33+
// we've upgraded to latest Octokit.
34+
ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls12;
35+
3136
var fileSystem = new FileSystem();
3237

3338
return Parser.Default.ParseArguments<CreateSubOptions, AddAssetSubOptions, CloseSubOptions, PublishSubOptions, ExportSubOptions, InitSubOptions, ShowConfigSubOptions>(args)

tools/packages.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<packages>
3-
<package id="Cake" version="0.23.0" />
4-
</packages>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Cake" version="0.25.0" />
4+
</packages>

0 commit comments

Comments
 (0)