Skip to content

Commit

Permalink
Bump to 1.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Everett Maus committed Mar 20, 2018
1 parent f35b2a6 commit e0db323
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions SetCurrentVersion.cmd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
set MAJOR_PREVIOUS=1
set MINOR_PREVIOUS=7
set PATCH_PREVIOUS=3
set PATCH_PREVIOUS=4
set PRERELEASE_PREVIOUS=

set MAJOR=1
set MINOR=7
set PATCH=4
set PATCH=5
set PRERELEASE=
8 changes: 4 additions & 4 deletions SetCurrentVersion.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash
MAJOR_PREVIOUS=1
MINOR_PREVIOUS=5
PATCH_PREVIOUS=46
MINOR_PREVIOUS=7
PATCH_PREVIOUS=4
PRERELEASE_PREVIOUS=

MAJOR=1
MINOR=6
PATCH=0
MINOR=7
PATCH=5
PRERELEASE=
6 changes: 6 additions & 0 deletions src/ReleaseHistory.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,9 @@
* Platform Specific Tooling Text Fix
* Skimmers can now be disabled via the configuration file
* The Driver will now pull configuration from a default location to allow for easier re-packaging of tools with custom configurations

## **v1.7.5** [Sdk](https://www.nuget.org/packages/Sarif.Sdk/1.7.5) | [Driver](https://www.nuget.org/packages/Sarif.Driver/1.7.5) | [Converters](https://www.nuget.org/packages/Sarif.Converters/1.7.5) | [Multitool](https://www.nuget.org/packages/Sarif.Multitool/1.7.5)
* Disabling skimmers text fix
* Fix a serialization bug with strings in a PropertyBag (not correctly escaped after a reserializing the data structure).
* Multitool improvements--added "rebaseUri" and "absoluteUri" tasks, which will either make the URIs in a SARIF log relative to some base URI, or take base URIs stored in SARIF and make the URIs absolute again.
* Added a "processing pipeline" model to the SARIF SDK in order to allow easy chaining of operations on SARIF logs (like making all URIs relative/absolute).
2 changes: 1 addition & 1 deletion src/Sarif.Driver/VersionConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Microsoft.CodeAnalysis.Sarif.Driver
public static class VersionConstants
{
public const string Prerelease = "";
public const string AssemblyVersion = "1.7.4";
public const string AssemblyVersion = "1.7.5";
public const string FileVersion = AssemblyVersion + ".0";
public const string Version = AssemblyVersion + Prerelease;
}
Expand Down
4 changes: 2 additions & 2 deletions src/Sarif/VersionConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ namespace Microsoft.CodeAnalysis.Sarif
public static class VersionConstants
{
public const string Prerelease = "";
public const string AssemblyVersion = "1.7.4";
public const string FileVersion = "1.7.4" + ".0";
public const string AssemblyVersion = "1.7.5";
public const string FileVersion = "1.7.5" + ".0";
public const string Version = AssemblyVersion + Prerelease;
}
}

0 comments on commit e0db323

Please sign in to comment.