Skip to content

Commit

Permalink
fix typo in runner.go (#2189)
Browse files Browse the repository at this point in the history
* fix typo in runner.go

Signed-off-by: Pavol Pitonak <pavol@pitonak.com>

* Bump up version

Signed-off-by: Zabil Cheriya Maliackal <zabilcm@gmail.com>

Co-authored-by: Zabil Cheriya Maliackal <zabilcm@gmail.com>
  • Loading branch information
ppitonak and zabil committed Jan 22, 2022
1 parent fa85377 commit f98dd40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ func Start(manifest *manifest.Manifest, stream int, killChannel chan bool, debug
if err != nil {
return nil, err
}
logger.Debugf(true, "Staring %s runner", manifest.Language)
logger.Debugf(true, "Starting %s runner", manifest.Language)
runner, err := StartLegacyRunner(manifest, strconv.Itoa(handler.ConnectionPortNumber()), writer, killChannel, debug)
if err != nil {
return nil, err
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

// CurrentGaugeVersion represents the current version of Gauge
var CurrentGaugeVersion = &Version{1, 4, 2}
var CurrentGaugeVersion = &Version{1, 4, 3}

// BuildMetadata represents build information of current release (e.g, nightly build information)
var BuildMetadata = ""
Expand Down

0 comments on commit f98dd40

Please sign in to comment.