mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-24 13:08:26 -05:00
build(deps): bump github.com/spf13/afero from 1.12.0 to 1.14.0
Bumps [github.com/spf13/afero](https://github.com/spf13/afero) from 1.12.0 to 1.14.0. - [Release notes](https://github.com/spf13/afero/releases) - [Commits](https://github.com/spf13/afero/compare/v1.12.0...v1.14.0) --- updated-dependencies: - dependency-name: github.com/spf13/afero dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
+38
-1
@@ -2,7 +2,11 @@
|
||||
|
||||
A FileSystem Abstraction System for Go
|
||||
|
||||
[](https://github.com/spf13/afero/actions/workflows/test.yml) [](https://godoc.org/github.com/spf13/afero) [](https://gitter.im/spf13/afero?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[](https://github.com/spf13/afero/actions?query=workflow%3ACI)
|
||||
[](https://gitter.im/spf13/afero?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[](https://goreportcard.com/report/github.com/spf13/afero)
|
||||

|
||||
[](https://pkg.go.dev/mod/github.com/spf13/afero)
|
||||
|
||||
# Overview
|
||||
|
||||
@@ -427,6 +431,39 @@ See the [Releases Page](https://github.com/spf13/afero/releases).
|
||||
4. Push to the branch (`git push origin my-new-feature`)
|
||||
5. Create new Pull Request
|
||||
|
||||
## Releasing
|
||||
|
||||
As of version 1.14.0, Afero moved implementations with third-party libraries to
|
||||
their own submodules.
|
||||
|
||||
Releasing a new version now requires a few steps:
|
||||
|
||||
```
|
||||
VERSION=X.Y.Z
|
||||
git tag -a v$VERSION -m "Release $VERSION"
|
||||
git push origin v$VERSION
|
||||
|
||||
cd gcsfs
|
||||
go get github.com/spf13/afero@v$VERSION
|
||||
go mod tidy
|
||||
git commit -am "Update afero to v$VERSION"
|
||||
git tag -a gcsfs/v$VERSION -m "Release gcsfs $VERSION"
|
||||
git push origin gcsfs/v$VERSION
|
||||
cd ..
|
||||
|
||||
cd sftpfs
|
||||
go get github.com/spf13/afero@v$VERSION
|
||||
go mod tidy
|
||||
git commit -am "Update afero to v$VERSION"
|
||||
git tag -a sftpfs/v$VERSION -m "Release sftpfs $VERSION"
|
||||
git push origin sftpfs/v$VERSION
|
||||
cd ..
|
||||
|
||||
git push
|
||||
```
|
||||
|
||||
TODO: move these instructions to a Makefile or something
|
||||
|
||||
## Contributors
|
||||
|
||||
Names in no particular order:
|
||||
|
||||
Reference in New Issue
Block a user