Skip to content

Commit

Permalink
Upgrade to nakama-common v1.4.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
novabyte committed Feb 27, 2020
1 parent 218e24f commit beab37f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ require (
github.com/gorilla/mux v1.7.4
github.com/gorilla/websocket v1.4.1
github.com/grpc-ecosystem/grpc-gateway v1.13.0
github.com/heroiclabs/nakama-common v1.3.1
github.com/heroiclabs/nakama-common v1.4.0
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/jackc/pgx v3.5.0+incompatible
github.com/jmhodges/levigo v1.0.0 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ github.com/hashicorp/golang-lru v0.5.3/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uG
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
github.com/heroiclabs/nakama-common v1.3.1 h1:M2pBuJtvh1QLjXZtHuwTGpRTfGgpNWDGF2y6SOgl9t4=
github.com/heroiclabs/nakama-common v1.3.1/go.mod h1:0lw1qUs5FhJlox1WsEPdODRsdvfZ7Q1c/2jxkbeL++M=
github.com/heroiclabs/nakama-common v1.4.0 h1:7IRb+FIYKa4iOY08lTVmZ5kHHNaDNWEQE9+w4bWNdCU=
github.com/heroiclabs/nakama-common v1.4.0/go.mod h1:0lw1qUs5FhJlox1WsEPdODRsdvfZ7Q1c/2jxkbeL++M=
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
Expand Down
4 changes: 2 additions & 2 deletions sample_go_module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ To setup your own project to build modules for the game server you can follow th

```bash
go mod init "plugin_code"
go get -u "github.com/heroiclabs/nakama-common@v1.2.0"
go get -u "github.com/heroiclabs/nakama-common@v1.4.0"
```

⚠️ __NOTE__: If you're working on Nakama's master branch drop the `@v1.2.0` from the above snippet.
Expand Down Expand Up @@ -82,7 +82,7 @@ For Windows development and environments where you want to use our official Dock

```bash
cd "$HOME/plugin_code" # Your project folder. See instructions above.
docker run --rm -w "/builder" -v "${PWD}:/builder" heroiclabs/nakama-pluginbuilder:2.8.0 build -buildmode=plugin -trimpath -o ./modules/plugin_code.so
docker run --rm -w "/builder" -v "${PWD}:/builder" heroiclabs/nakama-pluginbuilder:2.10.0 build -buildmode=plugin -trimpath -o ./modules/plugin_code.so
```

In the command above we bind-mount your current folder into the container and use the Go toolchain inside it to run the build. The output artifacts are written back into your host filesystem.
Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ github.com/grpc-ecosystem/grpc-gateway/internal
github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger/options
github.com/grpc-ecosystem/grpc-gateway/runtime
github.com/grpc-ecosystem/grpc-gateway/utilities
# github.com/heroiclabs/nakama-common v1.3.1
# github.com/heroiclabs/nakama-common v1.4.0
github.com/heroiclabs/nakama-common/api
github.com/heroiclabs/nakama-common/rtapi
github.com/heroiclabs/nakama-common/runtime
Expand Down

0 comments on commit beab37f

Please sign in to comment.