diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index ab9aa6f16..afb4823cd 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -67,7 +67,7 @@ body: org.opencontainers.image.title = "foundryvtt-docker" org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker" org.opencontainers.image.vendor = "Geekpad" - org.opencontainers.image.version = "11.315.0" + org.opencontainers.image.version = "11.315.1" validations: required: true - type: textarea @@ -78,7 +78,7 @@ body: render: console placeholder: | foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern - foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.315.0 + foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.315.1 foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled. foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected. diff --git a/.github/ISSUE_TEMPLATE/regression.yml b/.github/ISSUE_TEMPLATE/regression.yml index 43125fe11..cea07a23d 100644 --- a/.github/ISSUE_TEMPLATE/regression.yml +++ b/.github/ISSUE_TEMPLATE/regression.yml @@ -82,7 +82,7 @@ body: org.opencontainers.image.title = "foundryvtt-docker" org.opencontainers.image.url = "https://github.com/felddy/foundryvtt-docker" org.opencontainers.image.vendor = "Geekpad" - org.opencontainers.image.version = "11.315.0" + org.opencontainers.image.version = "11.315.1" validations: required: true - type: textarea @@ -93,7 +93,7 @@ body: render: console placeholder: | foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] Timezone set to: US/Eastern - foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.315.0 + foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Starting felddy/foundryvtt container v11.315.1 foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [debug] CONTAINER_VERBOSE set. Debug logging enabled. foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] Reading configured secrets from: /run/secrets/config.json foundry_1 | Entrypoint | 2022-02-23 14:14:53 | [info] No Foundry Virtual Tabletop installation detected. diff --git a/README.md b/README.md index fe73ac9ab..fcaa3cbf4 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ It is recommended that most users use the `:release` tag. | Image:tag | Description | |-----------|-------------| |`felddy/foundryvtt:release` | The most recent image from the `stable` channel. These images are **considered stable**, and well-tested. Most users will use this tag. The `latest` tag always points to the same version as `release`.| -|`felddy/foundryvtt:11.315.0`| An exact image version. | +|`felddy/foundryvtt:11.315.1`| An exact image version. | |`felddy/foundryvtt:11.315`| The most recent image matching the major and minor version numbers. | |`felddy/foundryvtt:11`| The most recent image matching the major version number. | |`felddy/foundryvtt:latest`| See the `release` tag. [Why does `latest` == `release`?](https://vsupalov.com/docker-latest-tag/) | @@ -334,8 +334,8 @@ Build the image locally using this git repository as the [build context](https:/ ```console docker build \ - --build-arg VERSION=11.315.0 \ - --tag felddy/foundryvtt:11.315.0 \ + --build-arg VERSION=11.315.1 \ + --tag felddy/foundryvtt:11.315.1 \ https://github.com/felddy/foundryvtt-docker.git#develop ``` @@ -358,9 +358,9 @@ Docker: ```console docker buildx build \ --platform linux/amd64 \ - --build-arg VERSION=11.315.0 \ + --build-arg VERSION=11.315.1 \ --output type=docker \ - --tag felddy/foundryvtt:11.315.0 . + --tag felddy/foundryvtt:11.315.1 . ``` ## Pre-installed distribution builds ## @@ -378,8 +378,8 @@ Build the image with credentials: docker build \ --build-arg FOUNDRY_USERNAME='' \ --build-arg FOUNDRY_PASSWORD='' \ - --build-arg VERSION=11.315.0 \ - --tag felddy/foundryvtt:11.315.0 \ + --build-arg VERSION=11.315.1 \ + --tag felddy/foundryvtt:11.315.1 \ https://github.com/felddy/foundryvtt-docker.git#develop ``` @@ -388,8 +388,8 @@ Or build the image using a temporary URL: ```console docker build \ --build-arg FOUNDRY_RELEASE_URL='' \ - --build-arg VERSION=11.315.0 \ - --tag felddy/foundryvtt:11.315.0 \ + --build-arg VERSION=11.315.1 \ + --tag felddy/foundryvtt:11.315.1 \ https://github.com/felddy/foundryvtt-docker.git#develop ``` diff --git a/src/_version.py b/src/_version.py index 06e160a87..b830b3225 100644 --- a/src/_version.py +++ b/src/_version.py @@ -1,3 +1,3 @@ """This file defines the version of this module.""" -__version__ = "11.315.0" +__version__ = "11.315.1"