You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
I found that package github.com/hyperledger/aries-framework-go/spi/storage is placed in submodule github.com/hyperledger/aries-framework-go/spi instead of root module.
However, it seems that submodule github.com/hyperledger/aries-framework-go/spi is not tagged. According to Go Modules wiki, submodule should be tagged like relative-path-to-root/vX.X.X.
At now, when trying to import package github.com/hyperledger/aries-framework-go/spi/storage, downstream would depends on pseudo-version of module github.com/hyperledger/aries-framework-go/spi.
I think it is not very readable and difficult to upgrade. This is not conductive to version control either.
So, I propose whether it is possible to tag submodule properly. For example, spi/v0.0.1, spi/v0.1.8etc, so that other project can use tag to import this module in go.mod.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I found that package
github.com/hyperledger/aries-framework-go/spi/storage
is placed in submodulegithub.com/hyperledger/aries-framework-go/spi
instead of root module.However, it seems that submodule
github.com/hyperledger/aries-framework-go/spi
is not tagged. According to Go Modules wiki, submodule should be tagged likerelative-path-to-root/vX.X.X
.At now, when trying to import package
github.com/hyperledger/aries-framework-go/spi/storage
, downstream would depends on pseudo-version of modulegithub.com/hyperledger/aries-framework-go/spi
.I think it is not very readable and difficult to upgrade. This is not conductive to version control either.
So, I propose whether it is possible to tag submodule properly. For example,
spi/v0.0.1
,spi/v0.1.8
etc, so that other project can use tag to import this module in go.mod.The text was updated successfully, but these errors were encountered: