Skip to content

Commit 12a2857

Browse files
authored
release(prepare): v1.7.0 (#548)
1 parent 6d3c512 commit 12a2857

File tree

23 files changed

+41
-40
lines changed

23 files changed

+41
-40
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ bump-version:
107107
for plugin in $(PLUGINS_LIST) ; do \
108108
sed -i '' 's/github.com\/darkweak\/souin $(from)/github.com\/darkweak\/souin $(to)/' plugins/$$plugin/go.mod ; \
109109
done
110+
sed -i '' 's/github.com\/darkweak\/souin $(from)/github.com\/darkweak\/souin $(to)/' plugins/souin/storages/go.mod
110111

111112
bump-plugins-deps: ## Bump plugins dependencies
112113
for plugin in $(MOD_PLUGINS_LIST) ; do \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ experimental:
952952
plugins:
953953
souin:
954954
moduleName: github.com/darkweak/souin
955-
version: v1.6.50
955+
version: v1.7.0
956956
```
957957
After that you can declare either the whole configuration at once in the middleware block or by service. See the examples below.
958958
```yaml

plugins/beego/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.22.4
66

77
require (
88
github.com/beego/beego/v2 v2.1.1
9-
github.com/darkweak/souin v1.6.50
9+
github.com/darkweak/souin v1.7.0
1010
github.com/darkweak/souin/plugins/souin v0.0.0-00010101000000-000000000000
1111
github.com/darkweak/souin/plugins/souin/storages v0.0.0-00010101000000-000000000000
1212
)
@@ -184,7 +184,7 @@ require (
184184
)
185185

186186
replace (
187-
github.com/darkweak/souin v1.6.50 => ../..
187+
github.com/darkweak/souin v1.7.0 => ../..
188188
github.com/darkweak/souin/plugins/souin => ../souin
189189
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
190190
)

plugins/caddy/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.22.1
44

55
require (
66
github.com/caddyserver/caddy/v2 v2.8.4
7-
github.com/darkweak/souin v1.6.50
7+
github.com/darkweak/souin v1.7.0
88
github.com/darkweak/storages/core v0.0.8
99
)
1010

@@ -153,4 +153,4 @@ require (
153153
howett.net/plist v1.0.0 // indirect
154154
)
155155

156-
replace github.com/darkweak/souin v1.6.50 => ../..
156+
replace github.com/darkweak/souin v1.7.0 => ../..

plugins/chi/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/darkweak/souin/plugins/chi
33
go 1.22.1
44

55
require (
6-
github.com/darkweak/souin v1.6.50
6+
github.com/darkweak/souin v1.7.0
77
github.com/darkweak/souin/plugins/souin/storages v0.0.0-00010101000000-000000000000
88
github.com/go-chi/chi/v5 v5.0.12
99
)
@@ -179,6 +179,6 @@ require (
179179
)
180180

181181
replace (
182-
github.com/darkweak/souin v1.6.50 => ../..
182+
github.com/darkweak/souin v1.7.0 => ../..
183183
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
184184
)

plugins/dotweb/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/darkweak/souin/plugins/dotweb
33
go 1.22.1
44

55
require (
6-
github.com/darkweak/souin v1.6.50
6+
github.com/darkweak/souin v1.7.0
77
github.com/darkweak/souin/plugins/souin/storages v0.0.0-00010101000000-000000000000
88
github.com/devfeel/dotweb v1.7.21
99
)
@@ -180,6 +180,6 @@ require (
180180
)
181181

182182
replace (
183-
github.com/darkweak/souin v1.6.50 => ../..
183+
github.com/darkweak/souin v1.7.0 => ../..
184184
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
185185
)

plugins/echo/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/darkweak/souin/plugins/echo
33
go 1.22.1
44

55
require (
6-
github.com/darkweak/souin v1.6.50
6+
github.com/darkweak/souin v1.7.0
77
github.com/darkweak/souin/plugins/souin/storages v0.0.0-00010101000000-000000000000
88
github.com/darkweak/storages/core v0.0.8
99
github.com/labstack/echo/v4 v4.11.1
@@ -182,6 +182,6 @@ require (
182182
)
183183

184184
replace (
185-
github.com/darkweak/souin v1.6.50 => ../..
185+
github.com/darkweak/souin v1.7.0 => ../..
186186
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
187187
)

plugins/fiber/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/darkweak/souin/plugins/fiber
33
go 1.22.1
44

55
require (
6-
github.com/darkweak/souin v1.6.50
6+
github.com/darkweak/souin v1.7.0
77
github.com/darkweak/souin/plugins/souin/storages v0.0.0-00010101000000-000000000000
88
github.com/gofiber/fiber/v2 v2.52.1
99
github.com/valyala/fasthttp v1.51.0
@@ -185,6 +185,6 @@ require (
185185
)
186186

187187
replace (
188-
github.com/darkweak/souin v1.6.50 => ../..
188+
github.com/darkweak/souin v1.7.0 => ../..
189189
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
190190
)

plugins/gin/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/darkweak/souin/plugins/gin
33
go 1.22.1
44

55
require (
6-
github.com/darkweak/souin v1.6.50
6+
github.com/darkweak/souin v1.7.0
77
github.com/darkweak/souin/plugins/souin/storages v0.0.0-00010101000000-000000000000
88
github.com/gin-gonic/gin v1.9.1
99
)
@@ -196,6 +196,6 @@ require (
196196
)
197197

198198
replace (
199-
github.com/darkweak/souin v1.6.50 => ../..
199+
github.com/darkweak/souin v1.7.0 => ../..
200200
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
201201
)

plugins/go-zero/examples/internal/handler/routes.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)