From 1df1266d71237b51195a68b595bf0db112b81efc Mon Sep 17 00:00:00 2001 From: "sablier-bot[bot]" <186367030+sablier-bot[bot]@users.noreply.github.com> Date: Sat, 30 May 2026 23:40:19 +0000 Subject: [PATCH] chore(main): release 1.3.1 --- .github/release-please/.release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 8 ++++---- examples/docker/compose.yml | 2 +- version.go | 2 +- 5 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.github/release-please/.release-please-manifest.json b/.github/release-please/.release-please-manifest.json index 6a7753e..3b3e5e7 100644 --- a/.github/release-please/.release-please-manifest.json +++ b/.github/release-please/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.0" + ".": "1.3.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 60c8aa2..202f29f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.3.1](https://github.com/sablierapp/sablier-traefik-plugin/compare/v1.3.0...v1.3.1) (2026-05-30) + + +### Chores + +* **deps:** bump actions/create-github-app-token from 3.1.1 to 3.2.0 ([#45](https://github.com/sablierapp/sablier-traefik-plugin/issues/45)) ([c6c6322](https://github.com/sablierapp/sablier-traefik-plugin/commit/c6c63228454ef7ab30fb0061ece5473520d18e89)) +* **deps:** bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 ([#46](https://github.com/sablierapp/sablier-traefik-plugin/issues/46)) ([741b778](https://github.com/sablierapp/sablier-traefik-plugin/commit/741b778e110fe78a5fea98a74a64235582631e4f)) + ## [1.3.0](https://github.com/sablierapp/sablier-traefik-plugin/compare/v1.2.0...v1.3.0) (2026-05-16) diff --git a/README.md b/README.md index 91ce11a..73a5920 100644 --- a/README.md +++ b/README.md @@ -38,14 +38,14 @@ experimental: plugins: sablier: moduleName: "github.com/sablierapp/sablier-traefik-plugin" - version: "v1.3.0" + version: "v1.3.1" ``` Or using CLI arguments: ```yaml --experimental.plugins.sablier.moduleName=github.com/sablierapp/sablier-traefik-plugin ---experimental.plugins.sablier.version=v1.3.0 +--experimental.plugins.sablier.version=v1.3.1 ``` @@ -226,10 +226,10 @@ Enable the Swarm provider with empty services support: ```yaml traefik: - image: traefik:v1.3.0 + image: traefik:v1.3.1 command: - --experimental.plugins.sablier.modulename=github.com/sablierapp/sablier-traefik-plugin - - --experimental.plugins.sablier.version=v1.3.0 + - --experimental.plugins.sablier.version=v1.3.1 - --entryPoints.http.address=:80 - --providers.swarm=true - --providers.swarm.refreshSeconds=1 diff --git a/examples/docker/compose.yml b/examples/docker/compose.yml index 024cc61..d5a83ed 100644 --- a/examples/docker/compose.yml +++ b/examples/docker/compose.yml @@ -5,7 +5,7 @@ services: command: # Uncomment the following lines to use the released version of the plugin # - --experimental.plugins.sablier.modulename=github.com/sablierapp/sablier-traefik-plugin - # - --experimental.plugins.sablier.version=v1.3.0 # x-release-please-version + # - --experimental.plugins.sablier.version=v1.3.1 # x-release-please-version # Comment the following line to use the released version of the plugin - --experimental.localPlugins.sablier.moduleName=github.com/sablierapp/sablier-traefik-plugin - --entryPoints.http.address=:80 diff --git a/version.go b/version.go index 5279a0a..a946988 100644 --- a/version.go +++ b/version.go @@ -1,6 +1,6 @@ package sablier_traefik_plugin // x-release-please-start-version -const Version = "1.3.0" +const Version = "1.3.1" // x-release-please-end