Skip to content

Commit d090f9a

Browse files
committed
Update version 7.9.0
1 parent 0b79377 commit d090f9a

File tree

7 files changed

+12
-5
lines changed

7 files changed

+12
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
dotnet: 3.1.201
11-
version: 7.8.1
11+
version: 7.9.0
1212
key: dein:hardhat
1313
organization: dein
1414
name: HardHat

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
dotnet: 3.1.201
10-
version: 7.8.1
10+
version: 7.9.0
1111

1212
jobs:
1313
win:

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+
## [7.9.0] - 2020-04-24
13+
14+
**Added:**
15+
16+
- Task to kill all gulp process running
17+
1218
## [7.8.1] - 2020-04-24
1319

1420
**Updated:**

HardHat/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>7.8.1</VersionPrefix>
5+
<VersionPrefix>7.9.0</VersionPrefix>
66
<ProjectGuid>{b407f8af-bade-4c29-a9e6-11547ca64281}</ProjectGuid>
77

88
<Authors>Camilo Martinez</Authors>

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ Choose the desired letter combination and let **HardHat** work for you.
283283
| <kbd>tr</kbd> | Revert original files to selected project. |
284284
| <kbd>tt</kbd> | Launch `gulp test` command over selected project to `TASK_PROJECT`. Start server according to previous configuration. |
285285
| <kbd>ts</kbd> | Launch `gulp server` command over selected project to `TASK_PROJECT`. Start server according to previous configuration. |
286+
| <kbd>tk</kbd> | Run `kill gulp` command. |
286287
| <kbd>tl</kbd> | Launch `gulp log` command over selected project to `TASK_PROJECT`. |
287288

288289
_See [Environment Variables](#environment-variables) section_ for `TASK_PROJECT` configuration.

sonar.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22
set /p token=<sonar.txt
33
:: https://docs.sonarqube.org/display/SONAR/Analysis+Parameters
4-
dotnet sonarscanner begin /k:"dein:hardhat" /n:"HardHat" /v:"7.8.1" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="%token%" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*"
4+
dotnet sonarscanner begin /k:"dein:hardhat" /n:"HardHat" /v:"7.9.0" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="%token%" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*"
55
dotnet restore
66
dotnet build
77
dotnet test HardHat.Tests/HardHat.Tests.csproj

sonar.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
token="$(cat sonar.txt)"
33
# https://docs.sonarqube.org/display/SONAR/Analysis+Parameters
4-
dotnet sonarscanner begin /k:"dein:hardhat" /n:"HardHat" /v:"7.8.1" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="${token}" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*"
4+
dotnet sonarscanner begin /k:"dein:hardhat" /n:"HardHat" /v:"7.9.0" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="${token}" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*"
55
dotnet restore
66
dotnet build
77
dotnet test HardHat.Tests/HardHat.Tests.csproj

0 commit comments

Comments
 (0)