Skip to content

Commit

Permalink
Fix dependencies for now, and prep 5.0.2. (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
philcluff authored Nov 20, 2023
1 parent 1c236d9 commit 29b3ddf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Not familiar with Mux? Check out https://mux.com/ for more information.
## Installation

```
go get github.com/muxinc/mux-go/v4
go get github.com/muxinc/mux-go/v5
```

## Getting Started
Expand Down Expand Up @@ -48,7 +48,7 @@ import (
"fmt"
"os"

"github.com/muxinc/mux-go/v4"
"github.com/muxinc/mux-go/v5"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type ConfigurationOption func(*Configuration)
func NewConfiguration(opts ...ConfigurationOption) *Configuration {
cfg := &Configuration{
basePath: "https://api.mux.com",
userAgent: "Mux Go | 5.0.1",
userAgent: "Mux Go | 5.0.2",
}
for _, opt := range opts {
opt(cfg)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/muxinc/mux-go/v4
module github.com/muxinc/mux-go/v5

go 1.15

Expand Down

0 comments on commit 29b3ddf

Please sign in to comment.