diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b6ad7d..4f06832 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Run GoReleaser uses: goreleaser/goreleaser-action@v4 with: - version: v1.3.1 + version: v1.19.2 args: release --rm-dist env: GITHUB_TOKEN: ${{ secrets.GH_PAT }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 4958a1b..70c89c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) ## [Unreleased] +## [0.2.1] - 2023-08-09 +### Changed +* Update dependencies + ## [0.2.0] - 2023-08-09 ### Added * Add permissions @@ -16,5 +20,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) ### Added * Initial release -[Unreleased]: https://github.com/nwtgck/handy-sshd/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/nwtgck/handy-sshd/compare/v0.2.1...HEAD +[0.2.1]: https://github.com/nwtgck/handy-sshd/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/nwtgck/handy-sshd/compare/v0.1.0...v0.2.0 diff --git a/README.md b/README.md index 871d60c..16017d8 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ Portable SSH Server ## Install on Ubuntu/Debian ```bash -wget https://github.com/nwtgck/handy-sshd/releases/download/v0.1.0/handy-sshd-0.1.0-linux-amd64.deb -sudo dpkg -i handy-sshd-0.1.0-linux-amd64.deb +wget https://github.com/nwtgck/handy-sshd/releases/download/v0.2.0/handy-sshd-0.2.0-linux-amd64.deb +sudo dpkg -i handy-sshd-0.2.0-linux-amd64.deb ``` ## Install on Mac diff --git a/go.mod b/go.mod index 7f2fccc..a261369 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/pkg/sftp v1.13.5 github.com/spf13/cobra v1.7.0 golang.org/x/crypto v0.12.0 - golang.org/x/exp v0.0.0-20230809094429-853ea248256d + golang.org/x/exp v0.0.0-20230809150735-7b3493d9a819 ) require ( diff --git a/go.sum b/go.sum index 4d06c32..d8f05e0 100644 --- a/go.sum +++ b/go.sum @@ -27,8 +27,8 @@ github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXl golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.12.0 h1:tFM/ta59kqch6LlvYnPa0yx5a83cL2nHflFhYKvv9Yk= golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= -golang.org/x/exp v0.0.0-20230809094429-853ea248256d h1:wu5bD43Ana/nF1ZmaLr3lW/FQeJU8CcI+Ln7yWHViXE= -golang.org/x/exp v0.0.0-20230809094429-853ea248256d/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc= +golang.org/x/exp v0.0.0-20230809150735-7b3493d9a819 h1:EDuYyU/MkFXllv9QF9819VlI9a4tzGuCbhG0ExK9o1U= +golang.org/x/exp v0.0.0-20230809150735-7b3493d9a819/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= diff --git a/version/version.go b/version/version.go index c62f7e6..fafddf1 100644 --- a/version/version.go +++ b/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "0.2.0" +const Version = "0.2.1"