Skip to content

Commit 1bc791b

Browse files
committed
Merge branch 'develop'
2 parents 516c5c6 + 3b51809 commit 1bc791b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Fixed for any bug fixes.
99
Security to invite users to upgrade in case of vulnerabilities.
1010
-->
1111

12+
## [4.3.1] - 2017-12-11
13+
14+
**Fixed:**
15+
16+
* Gulp update check.
17+
1218
## [4.3.0] - 2017-12-07
1319

1420
**Added:**

dev/HardHat.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<AssemblyName>HardHat</AssemblyName>
44
<PackageId>HardHat</PackageId>
5-
<VersionPrefix>4.3.0</VersionPrefix>
5+
<VersionPrefix>4.3.1</VersionPrefix>
66

77
<Authors>Camilo Martinez</Authors>
88
<Company>dein Software</Company>

dev/view/Gulp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ public static void Check(){
542542
if (Directory.Exists(Paths.Combine(dirPath, ".git"))){
543543
Git.CmdFetch(dirPath);
544544
bool updated = Git.CmdStatus(dirPath);
545-
if (!updated){
545+
if (updated){
546546
StringBuilder msg = new StringBuilder();
547547
msg.Append($"There is a new Gulp project version available.");
548548
msg.Append(Environment.NewLine);

0 commit comments

Comments
 (0)