diff --git a/MAINTAIN.md b/MAINTAIN.md index 0be5399a..1da39e24 100644 --- a/MAINTAIN.md +++ b/MAINTAIN.md @@ -7,8 +7,7 @@ To release a new version, please follow the steps below: * Create a new release branch `release/v${version}` from the main branch. Do the work below on the new branch. * Create tag `api/v${version}`. * Commit the changes below (the CI will fail at this point): - * Update those `go.mod` which depend on `mosn.io/htnn/api`. - * Remove the `go.work` file. + * Update those `go.mod` which depend on `mosn.io/htnn/$mod`. * Create tag `types/v${version}` for `types` module. Then do the same with `controller` and `plugins`. * Running `make fmt-go`. Don't panic for "server response: not found" error. The sync of sum.golang.org might take half an hour. Try again later. Commit a new commit after the command succeed. The CI should pass now. * Create tag `image/v${version}` to trigger image building. diff --git a/controller/go.mod b/controller/go.mod index 68612061..be7ad08e 100644 --- a/controller/go.mod +++ b/controller/go.mod @@ -42,8 +42,8 @@ require ( k8s.io/api v0.29.3 k8s.io/apimachinery v0.29.3 k8s.io/client-go v0.29.3 - mosn.io/htnn/api v0.3.0 - mosn.io/htnn/types v0.3.0 + mosn.io/htnn/api v0.3.1 + mosn.io/htnn/types v0.3.1 sigs.k8s.io/controller-runtime v0.17.3 sigs.k8s.io/gateway-api v1.0.0 sigs.k8s.io/yaml v1.4.0 diff --git a/e2e/go.mod b/e2e/go.mod index d2dd47c1..17b5c415 100644 --- a/e2e/go.mod +++ b/e2e/go.mod @@ -22,8 +22,8 @@ require ( k8s.io/api v0.29.3 k8s.io/apimachinery v0.29.3 k8s.io/client-go v0.29.3 - mosn.io/htnn/controller v0.3.0 - mosn.io/htnn/types v0.3.0 + mosn.io/htnn/controller v0.3.1 + mosn.io/htnn/types v0.3.1 sigs.k8s.io/controller-runtime v0.17.3 sigs.k8s.io/gateway-api v1.0.0 ) diff --git a/plugins/go.mod b/plugins/go.mod index 96015ac3..a08fc1db 100644 --- a/plugins/go.mod +++ b/plugins/go.mod @@ -37,8 +37,8 @@ require ( golang.org/x/oauth2 v0.20.0 golang.org/x/time v0.5.0 google.golang.org/protobuf v1.34.0 - mosn.io/htnn/api v0.3.0 - mosn.io/htnn/types v0.3.0 + mosn.io/htnn/api v0.3.1 + mosn.io/htnn/types v0.3.1 ) require ( diff --git a/types/go.mod b/types/go.mod index dac7b4f6..563e14ff 100644 --- a/types/go.mod +++ b/types/go.mod @@ -36,7 +36,7 @@ require ( istio.io/client-go v1.21.2 k8s.io/apimachinery v0.29.3 k8s.io/client-go v0.29.3 - mosn.io/htnn/api v0.3.0 + mosn.io/htnn/api v0.3.1 sigs.k8s.io/controller-runtime v0.17.3 sigs.k8s.io/gateway-api v1.0.0 )