diff --git a/CHANGELOG.md b/CHANGELOG.md index c8b5b6d..b920d83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Please refer to the [official documentation](https://docs.wilfredproject.org/en/latest/development.html) for more information about the CHANGELOG and releases. -## next-release +## v0.9.0 (released on 2021-11-09) - **Added** [#112](https://github.com/wilfred-dev/wilfred/issues/112) Added the ability to add additional ports to any server using `wilfred port `. - **Fixed** [#118](https://github.com/wilfred-dev/wilfred/issues/118) Fixed a minor spelling mistake during server creation. diff --git a/docs/source/conf.py b/docs/source/conf.py index f2305cf..cf1d191 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = "Vilhelm Prytz" # The full version, including alpha/beta/rc tags -release = "v0.8.0" +release = "v0.9.0" # -- General configuration --------------------------------------------------- diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 9423b46..094edb0 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ name: wilfred base: core18 -version: git # set version on release ('v0.1.0') and use 'git' during dev +version: "v0.9.0" # set version on release ('v0.1.0') and use 'git' during dev summary: A CLI for managing game servers using Docker # 79 char long summary description: | Wilfred is a command-line interface for running game servers locally. It uses Docker to run game servers in containers, which means they are completely separated. Wilfred can run any game that can run in Docker. diff --git a/wilfred/version.py b/wilfred/version.py index 1566a03..7c4be82 100644 --- a/wilfred/version.py +++ b/wilfred/version.py @@ -11,6 +11,6 @@ # use "0.0.0.dev0" to indicate incremental commit build # specify version "0.3.0" to indicate standard release # "commit_date" should be replaced upon building -version = "0.0.0.dev0" +version = "0.9.0" commit_hash = "development" commit_date = "YYYY-MM-DD"