Skip to content

Commit 5b7d83e

Browse files
authored
Remove trailing period after generic guidance uri. (#599)
* Remove trailing period after generic guidance uri. * Update Changelog.md * Update dependencies.
1 parent 935af10 commit 5b7d83e

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.0.28] - 2024-1-4
8+
### Fix
9+
Remove trailing period after general guidance URI in output to make it clickable when automatically converted to uri by terminal
10+
11+
### Dependencies
12+
Update dependencies
13+
714
## [1.0.27] - 2023-12-12
815
### Pipelines
916
Move GitHub Release task to last task in publish pipeline.

DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
<ItemGroup>
3838
<PackageReference Include="CommandLineParser" Version="2.9.1" />
3939
<PackageReference Include="LibGit2Sharp" Version="0.29.0" />
40-
<PackageReference Include="Microsoft.CST.ApplicationInspector.Logging" Version="1.9.16" />
40+
<PackageReference Include="Microsoft.CST.ApplicationInspector.Logging" Version="1.9.17" />
4141
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
42-
<PackageReference Include="Sarif.Sdk" Version="4.3.7" />
42+
<PackageReference Include="Sarif.Sdk" Version="4.4.0" />
4343
</ItemGroup>
4444

4545
</Project>

DevSkim-DotNet/Microsoft.DevSkim.CLI/Writers/SimpleTextWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public override void FlushAndClose()
4242
{
4343
if (anyIssues)
4444
{
45-
TextWriter.WriteLine("For guidance on reported issues visit the relevant page here: https://github.com/microsoft/DevSkim/tree/main/guidance.");
45+
TextWriter.WriteLine("For guidance on reported issues visit the relevant page here: https://github.com/microsoft/DevSkim/tree/main/guidance");
4646
}
4747

4848
TextWriter.Flush();

0 commit comments

Comments
 (0)