Skip to content

Commit

Permalink
Merge pull request #430 from IBM-Cloud/dev
Browse files Browse the repository at this point in the history
Publish v1.6.1
  • Loading branch information
Aerex authored Jan 28, 2025
2 parents 8965968 + 7362edf commit 54e9eff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bluemix/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package bluemix
import "fmt"

// Version is the SDK version
var Version = VersionType{Major: 1, Minor: 6, Build: 0}
var Version = VersionType{Major: 1, Minor: 6, Build: 1}

// VersionType describe version info
type VersionType struct {
Expand Down
4 changes: 4 additions & 0 deletions testhelpers/terminal/test_ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"bytes"
"fmt"
"io"
"os"
"strings"

term "github.com/IBM-Cloud/ibm-cloud-cli-sdk/bluemix/terminal"
Expand Down Expand Up @@ -35,6 +36,9 @@ type FakeUI struct {
}

func NewFakeUI() *FakeUI {
// NOTE: when mocking the UI we would like to have a large
/// terminal width to start with
os.Setenv("TEST_TERMINAL_WIDTH", "300")
return &FakeUI{}
}

Expand Down

0 comments on commit 54e9eff

Please sign in to comment.