Skip to content

Commit

Permalink
Bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmacdonald committed Nov 12, 2023
1 parent 1dea8ca commit 749f9c6
Show file tree
Hide file tree
Showing 4 changed files with 6 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.4.2"
LABEL org.opencontainers.image.version="v0.5.0"
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,7 +1,7 @@
.PHONY: all test clean build install frontend sourcemod
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
TAGGED_IMAGE = ghcr.io/leighmacdonald/gbans:$(BRANCH)
VERSION=v0.4.2
VERSION=v0.5.0
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
7 changes: 3 additions & 4 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Precompiled binaries will be provided once the project is in a more stable state
- [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
- [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 +58,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:0.4.2
ghcr.io/leighmacdonald/gbans:v0.5.0
```

Substitute `master` for a specific tag if desired, and `/home/ubuntu/gbans/gbans.yml` with the location of your config.
Expand Down Expand Up @@ -134,8 +134,7 @@ console. With a message like below on successful authentication with the server.
### Discord

To use discord you need to [create a discord application](https://discord.com/developers/applications). You will need
the
following values from your application:
the following values from your application:

- Application ID (General -> Application ID)
- Token (Bot -> Token)
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.4.3",
"version": "0.5.0",
"description": "gbans",
"main": "src/index.tsx",
"repository": "github.com/leighmacdonald/gbans",
Expand Down

0 comments on commit 749f9c6

Please sign in to comment.