-
Notifications
You must be signed in to change notification settings - Fork 247
Tagging consistency #262
Comments
Issue-Label Bot is automatically applying the label Links: app homepage, dashboard and code for this bot. |
I'm sorry about that. Please check it again and tell me. |
I have this error, not sure if I have something wrong in my go.mod: $ go get -u github.com/ahmdrz/goinsta/v2
go: github.com/ahmdrz/goinsta/[email protected]: go.mod has non-.../v2 module path "github.com/ahmdrz/goinsta" (and .../v2/go.mod does not exist) at revision v2.4.3
go get: error loading module requirements |
I'm using |
Reference to #240 |
I understand, however
It pulls a new dependency, but not the one I'm using: $ go get -u github.com/ahmdrz/goinsta
go: finding github.com/ahmdrz/goinsta latest
$ git diff
diff --git a/go.mod b/go.mod
index 118716b..209648b 100644
--- a/go.mod
+++ b/go.mod
@@ -4,6 +4,7 @@ go 1.12
require (
github.com/Masterminds/goutils v1.0.1
+ github.com/ahmdrz/goinsta v0.0.0-20190729052829-bf558a94ed9d // indirect
github.com/ahmdrz/goinsta/v2 v2.4.1-0.20190510152949-903ea3101245
github.com/certifi/gocertifi v0.0.0-20180118203423-deb3ae2ef261 // indirect
github.com/getsentry/raven-go v0.2.0
diff --git a/go.sum b/go.sum
index b196b5d..6768fcc 100644
--- a/go.sum
+++ b/go.sum
@@ -1,5 +1,7 @@
github.com/Masterminds/goutils v1.0.1 h1:upyB/JGR/aPHTE3f4O3mBIbJCr7aPup+/03IS4aXU6Y=
github.com/Masterminds/goutils v1.0.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=
+github.com/ahmdrz/goinsta v0.0.0-20190729052829-bf558a94ed9d h1:a9WkfI+kd9zEhI0KDPgRMjQNgkFSs/4GudnkHppTwAA=
+github.com/ahmdrz/goinsta v0.0.0-20190729052829-bf558a94ed9d/go.mod h1:ZDXgVWGZMWUpg9hZx5gmPmo4/XjT3vE3xFt7EG079NQ=
github.com/ahmdrz/goinsta/v2 v2.4.1-0.20190323085700-ffd9e29a313a h1:lvtGW57Exf0L6PtsPNkKRIW9oY6bxPqVx1zr8KYTtfM=
github.com/ahmdrz/goinsta/v2 v2.4.1-0.20190323085700-ffd9e29a313a/go.mod h1:M6/Tnc41f4gn+rl9HxFaNY1c6Px5zQWHgyY6S/wSZFs=
github.com/ahmdrz/goinsta/v2 v2.4.1-0.20190510152949-903ea3101245 h1:W4UU/mMm1UKBCb0a+XpWPsVi3GB3aTiA1UlkwTR+VLU= |
Yes, I know that this needs to be done, but I do not have enough experience with Go Modules for this matter. I would appreciate any help from you 🥂 |
Hello,
Could you please stick to semantic versioning for your release tags? You tagged
v2.4.2
then2.4.3
: this prevents Go modules from working.The text was updated successfully, but these errors were encountered: