Skip to content

Commit

Permalink
Bump version to 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmacdonald committed Nov 18, 2023
1 parent e30a79e commit 7296019
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FROM alpine:latest

LABEL maintainer="Leigh MacDonald <[email protected]>"
LABEL org.opencontainers.image.source="https://github.com/leighmacdonald/gbans"
LABEL org.opencontainers.image.version="v0.5.2"
LABEL org.opencontainers.image.version="v0.5.3"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.description="Centralized community backend for Team Fortress 2"

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.PHONY: all test clean build install frontend sourcemod
VERSION=v0.5.2
VERSION=v0.5.3
GO_CMD=go
GO_BUILD=$(GO_CMD) build
GO_FLAGS = -trimpath -ldflags="-s -w -X github.com/leighmacdonald/gbans/internal/app.BuildVersion=$(VERSION)"
Expand Down
10 changes: 6 additions & 4 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ Precompiled binaries will be provided once the project is in a more stable state
against. However i believe anything 10 and up should work. Please let me know if this is not the case.
- [PostGIS](https://postgis.net/) extension is also used for some GIS functionality.
- [NodeJS >=18.17.1](https://nodejs.org/en/) To build frontend
- [yarn4](https://yarnpkg.com/) JS package manager (If you have problems try: `cd frontend && corepack enable && yarn set version stable && yarn install`)
- [Sourcemod 1.11+](https://www.sourcemod.net/) - Sourcemod SDK path. [sourcemod/Makefile](../sourcemod/Makefile) expects your
installation path to be `~/sdk/sourcemod/addons/sourcemod` with `spcomp64` in your $PATH
- [yarn4](https://yarnpkg.com/) JS package manager (If you have problems
try: `cd frontend && corepack enable && yarn set version stable && yarn install`)
- [Sourcemod 1.11+](https://www.sourcemod.net/) - Sourcemod SDK path. [sourcemod/Makefile](../sourcemod/Makefile)
expects your
installation path to be `~/sdk/sourcemod/addons/sourcemod` with `spcomp64` in your $PATH

Basic steps to build the binary packages:

Expand All @@ -58,7 +60,7 @@ sudo docker run -d --restart unless-stopped \
--dns=1.1.1.1 \
-v /home/ubuntu/gbans/gbans.yml:/app/gbans.yml:ro \
--name gbans \
ghcr.io/leighmacdonald/gbans:v0.5.2
ghcr.io/leighmacdonald/gbans:v0.5.3
```

Substitute `master` for a specific tag if desired, and `/home/ubuntu/gbans/gbans.yml` with the location of your config.
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gbans",
"version": "0.5.2",
"version": "0.5.3",
"description": "gbans",
"main": "src/index.tsx",
"repository": "github.com/leighmacdonald/gbans",
Expand Down

0 comments on commit 7296019

Please sign in to comment.