Skip to content

Commit

Permalink
Version 1.4.0 (#117)
Browse files Browse the repository at this point in the history
Prepare to cut a release.

Seems like the changelog hasn't been updated, so we'll need to backfill that at
some point.
  • Loading branch information
jrobsonchase authored Aug 30, 2023
2 parents 22850dd + 4b3fb06 commit d26a592
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## 1.4.0

- Switch to `connect.ngrok-agent.com:443` as the default server address
- Add nicer error types that expose the ngrok error code

## 1.0.0 (2023-01-10)

Enhancements:
* Initial release
* Initial release
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.4.0
2 changes: 1 addition & 1 deletion session.go
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ func Connect(ctx context.Context, opts ...ConnectOption) (Session, error) {

cfg.ClientInfo = append(
cfg.ClientInfo,
clientInfo{Type: string(proto.LibraryOfficialGo), Version: libraryAgentVersion},
clientInfo{Type: string(proto.LibraryOfficialGo), Version: strings.TrimSpace(libraryAgentVersion)},
)

userAgent := generateUserAgent(cfg.ClientInfo)
Expand Down

0 comments on commit d26a592

Please sign in to comment.