Skip to content

Commit 969ad7b

Browse files
committed
Bump version to 0.0.7.
1 parent e119482 commit 969ad7b

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

cli/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func (lspCommand *LspCommand) Run() error {
140140
type VersionCommand struct{}
141141

142142
func (versionCommand *VersionCommand) Run(k *kong.Context) error {
143-
version := "v0.0.6"
143+
version := "v0.0.7"
144144
k.Printf("%s", version)
145145

146146
return nil

cli/cli_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func TestVersionCommand_Run(t *testing.T) {
6767
err = ctx.Run()
6868
assert.NilError(t, err)
6969

70-
assert.Equal(t, "whalelint: v0.0.6\n", stdBuffer.stdOut.String())
70+
assert.Equal(t, "whalelint: v0.0.7\n", stdBuffer.stdOut.String())
7171
assert.Equal(t, "", stdBuffer.stdErr.String())
7272
}
7373

plugins/jetbrains/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "WhaleLint"
12-
version = "0.0.6"
12+
version = "0.0.7"
1313

1414
description = "WhaleLint is a Dockerfile linter written in Golang."
1515

@@ -58,7 +58,7 @@ tasks.getByName<org.jetbrains.intellij.tasks.PatchPluginXmlTask>("patchPluginXml
5858
"<h2>Introduction</h2>", ""))
5959
}
6060

61-
version("0.0.6")
61+
version("0.0.7")
6262
}
6363

6464
tasks.withType<JavaCompile> {

plugins/vscode/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## v0.0.7 - 12th March 2021
4+
5+
- Support, i.e exception for special empty image "scratch".
6+
- Bump versions for dependencies.
7+
- Docker image
8+
- Docs grooming
9+
310
## v0.0.6 - 11th March 2021
411

512
- Bug fixes:

plugins/vscode/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
VSCode extension for Whalelint Dockerfile linter.
44

5+
It provides static analysis for Dockerfiles, identifying common mistakes and promotes best practices.
6+
57
![preview](https://user-images.githubusercontent.com/5306361/110014611-4c28c600-7d23-11eb-915d-114aca6470b2.gif)
68

79
## WhaleLint

plugins/vscode/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "whalelint",
33
"displayName": "WhaleLint",
44
"description": "Dockerfile linter written in Go.",
5-
"version": "0.0.6",
5+
"version": "0.0.7",
66
"publisher": "TamasGBarna",
77
"author": {
88
"name": "Tamás G. Barna"

0 commit comments

Comments
 (0)