From 5f1202df3002676b62488bff17dbc6e76d9a868b Mon Sep 17 00:00:00 2001 From: Avirut Mehta Date: Mon, 19 Dec 2022 01:02:42 -0600 Subject: [PATCH] Fix pinned version module name example Building with e.g. `github.com/lucaslorentz/caddy-docker-proxy/v2@2.7.0` does not work, the version pinning requires another `v` in front of the version number as in `github.com/lucaslorentz/caddy-docker-proxy/v2@v2.7.0` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 91988939..1d9e1e6e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ## NEW MODULE NAME! -We've renamed our go module, from version 2.7.0 forward you should import caddy-docker-proxy using `github.com/lucaslorentz/caddy-docker-proxy/v2` or a specific version `github.com/lucaslorentz/caddy-docker-proxy/v2@2.7.0`. +We've renamed our go module, from version 2.7.0 forward you should import caddy-docker-proxy using `github.com/lucaslorentz/caddy-docker-proxy/v2` or a specific version `github.com/lucaslorentz/caddy-docker-proxy/v2@v2.7.0`. The old name `github.com/lucaslorentz/caddy-docker-proxy/plugin` will be a available for backwards compatibility, but it will not have the latest version.