Skip to content

Commit

Permalink
Releasing 2.4.14 (#2480)
Browse files Browse the repository at this point in the history
* Releasing 2.4.14

* Addressing PR feedback

Co-authored-by: Michael C. Fanning <[email protected]>
  • Loading branch information
eddynaka and michaelcfanning authored Apr 22, 2022
1 parent a4661e9 commit 4e9f606
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/ReleaseHistory.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SARIF Package Release History (SDK, Driver, Converters, and Multitool)

## UNRELEASED
## **v2.4.14** [Sdk](https://www.nuget.org/packages/Sarif.Sdk/2.4.14) | [Driver](https://www.nuget.org/packages/Sarif.Driver/2.4.14) | [Converters](https://www.nuget.org/packages/Sarif.Converters/2.4.14) | [Multitool](https://www.nuget.org/packages/Sarif.Multitool/2.4.14) | [Multitool Library](https://www.nuget.org/packages/Sarif.Multitool.Library/2.4.14)

* BUGFIX: Eliminate dispose of stream and `StreamWriter` arguments passed to `SarifLog.Save` helpers. This would result in `ObjectDisposedException` being raised on attempt to access streams after save.
* BREAKING: `Id` property of `Location` changed from `int`(32bit) to `BigInteger`(unlimited) to fix `Newtonsoft.Json.JsonReaderException: JSON integer XXXXX is too large or small for an Int32.` [#2463](https://github.com/microsoft/sarif-sdk/pull/2463)
Expand Down
14 changes: 2 additions & 12 deletions src/build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,8 @@
<Company Condition=" '$(Company)' == '' ">Microsoft</Company>
<Product Condition=" '$(Product)' == '' ">Microsoft SARIF SDK</Product>
<Copyright Condition=" '$(Copyright)' == '' ">© Microsoft Corporation. All rights reserved.</Copyright>

<!--
VersionPrefix denotes the current version of the SDK. You must update it before every nuget drop.
Whenever you increment VersionPrefix, copy the old value into PreviousVersionPrefix.
PreviousVersionPrefix is defined here, not because our MSBuild .props or .targets files use it
(they don't), but rather to make it convenient for you to increment the version number by
having all the relevant values in one place. This property is actually used by the PowerShell
script that hides ("delists") the previous package versions on nuget.org.
-->
<VersionPrefix>2.4.13</VersionPrefix>
<PreviousVersionPrefix>2.4.12</PreviousVersionPrefix>
<VersionPrefix>2.4.14</VersionPrefix>
<PreviousVersionPrefix>2.4.13</PreviousVersionPrefix>

<!-- SchemaVersionAsPublishedToSchemaStoreOrg identifies the current published version on json schema store at https://schemastore.azurewebsites.net/schemas/json/ -->
<SchemaVersionAsPublishedToSchemaStoreOrg>2.1.0-rtm.5</SchemaVersionAsPublishedToSchemaStoreOrg>
Expand Down

0 comments on commit 4e9f606

Please sign in to comment.