Skip to content

Commit

Permalink
Merge branch 'release/0.10.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Jan 15, 2022
2 parents d8cd6dc + 79963ef commit 1783609
Show file tree
Hide file tree
Showing 7 changed files with 565 additions and 79 deletions.
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "/"
schedule:
interval: daily
timezone: Asia/Tokyo
open-pull-requests-limit: 99
reviewers: [ nwtgck ]
assignees: [ nwtgck ]
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
timezone: Asia/Tokyo
open-pull-requests-limit: 99
reviewers: [ nwtgck ]
assignees: [ nwtgck ]

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: v0.159.0
version: v1.0.0
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [0.10.2] - 2022-01-15
### Changed
* Update dependencies

## [0.10.1] - 2021-08-09
### Fixed
* Fix progress bar not to cause "index out of range" when time.Since() returns 0
Expand Down Expand Up @@ -101,7 +105,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
### Added
* Initial release

[Unreleased]: https://github.com/nwtgck/go-piping-tunnel/compare/v0.10.1...HEAD
[Unreleased]: https://github.com/nwtgck/go-piping-tunnel/compare/v0.10.2...HEAD
[0.10.2]: https://github.com/nwtgck/go-piping-tunnel/compare/v0.10.1...v0.10.2
[0.10.1]: https://github.com/nwtgck/go-piping-tunnel/compare/v0.10.0...v0.10.1
[0.10.0]: https://github.com/nwtgck/go-piping-tunnel/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/nwtgck/go-piping-tunnel/compare/v0.8.0...v0.9.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tunneling over HTTP with [Piping Server](https://github.com/nwtgck/piping-server


## Install for Windows
[Download](https://github.com/nwtgck/go-piping-tunnel/releases/download/v0.7.0/piping-tunnel-0.7.0-windows-amd64.zip)
[Download](https://github.com/nwtgck/go-piping-tunnel/releases/download/v0.10.1/piping-tunnel-0.10.1-windows-amd64.zip)

## Install for macOS
```bash
Expand All @@ -14,8 +14,8 @@ brew install nwtgck/piping-tunnel/piping-tunnel

## Install for Ubuntu
```bash
wget https://github.com/nwtgck/go-piping-tunnel/releases/download/v0.7.0/piping-tunnel-0.7.0-linux-amd64.deb
dpkg -i piping-tunnel-0.7.0-linux-amd64.deb
wget https://github.com/nwtgck/go-piping-tunnel/releases/download/v0.10.1/piping-tunnel-0.10.1-linux-amd64.deb
sudo dpkg -i piping-tunnel-0.10.1-linux-amd64.deb
```

Get more executables in the [releases](https://github.com/nwtgck/go-piping-tunnel/releases).
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ require (
github.com/mattn/go-tty v0.0.3
github.com/nwtgck/go-socks v0.1.0
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.1.3
golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5
github.com/spf13/cobra v1.3.0
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
)
604 changes: 533 additions & 71 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "0.10.1"
const Version = "0.10.2"

0 comments on commit 1783609

Please sign in to comment.