Skip to content

Commit

Permalink
Release 2.0.1 (#35)
Browse files Browse the repository at this point in the history
* Promoted version to 2.0.1
  • Loading branch information
hadarshjfrog authored Aug 27, 2024
1 parent 59cba5e commit 299ec1d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions JFrogVSExtension/Utils/Util.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ public static async Task<string> GetProcessOutputAsync(string pathToExe, string
pProcess.Start();
pProcess.BeginOutputReadLine();
pProcess.BeginErrorReadLine();
// Waits for maximal 100 seconds.
pProcess.WaitForExit(100000);
// Waits for maximal 1 hour
pProcess.WaitForExit(60*60*1000);

// Wait for the entire output to be written
if (outputWaitHandle.WaitOne(1) &&
Expand Down
2 changes: 1 addition & 1 deletion JFrogVSExtension/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="JFrogVSExtension.c07afb03-9f9a-45e2-8e6f-78442325bb24" Version="2.0.0" Language="en-US" Publisher="JFrog" />
<Identity Id="JFrogVSExtension.c07afb03-9f9a-45e2-8e6f-78442325bb24" Version="2.0.1" Language="en-US" Publisher="JFrog" />
<DisplayName>JFrog V2</DisplayName>
<Description xml:space="preserve">Visual Studio extension to integrate with JFrog Xray for scanning solution components. </Description>
<Icon>Resources\Icon.png</Icon>
Expand Down
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Release Notes

## 2.0.1 (Aug 27, 2024)
- Change Scan Timeout

## 2.0.0 (October 19, 2022)
- Add support for Xray's Watches.
- Add support for npm projects.
Expand Down

0 comments on commit 299ec1d

Please sign in to comment.