Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
equiman committed Dec 11, 2017
2 parents 516c5c6 + 3b51809 commit 1bc791b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Fixed for any bug fixes.
Security to invite users to upgrade in case of vulnerabilities.
-->

## [4.3.1] - 2017-12-11

**Fixed:**

* Gulp update check.

## [4.3.0] - 2017-12-07

**Added:**
Expand Down
2 changes: 1 addition & 1 deletion dev/HardHat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<AssemblyName>HardHat</AssemblyName>
<PackageId>HardHat</PackageId>
<VersionPrefix>4.3.0</VersionPrefix>
<VersionPrefix>4.3.1</VersionPrefix>

<Authors>Camilo Martinez</Authors>
<Company>dein Software</Company>
Expand Down
2 changes: 1 addition & 1 deletion dev/view/Gulp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ public static void Check(){
if (Directory.Exists(Paths.Combine(dirPath, ".git"))){
Git.CmdFetch(dirPath);
bool updated = Git.CmdStatus(dirPath);
if (!updated){
if (updated){
StringBuilder msg = new StringBuilder();
msg.Append($"There is a new Gulp project version available.");
msg.Append(Environment.NewLine);
Expand Down

0 comments on commit 1bc791b

Please sign in to comment.