gin-go @ v1.1
integrity
- size
- 135.4 KiB
- downloaded
- last checked
release notes
v1.1 (#751)
- Implement QueryArray and PostArray methods
- Refactor GetQuery and GetPostForm
- Removed additional Iota
I think assigning iota to each constant is not required
- Add 1.7 test.
- Add codecov.io
- corrected a typo in README
- remove coveralls services.
Signed-off-by: Bo-Yi Wu appleboy.tw@gmail.com
- Update TravisCI to Gitter webhook
- Add codecov.yml Gitter webhook
- Changed imports to gopkg instead of github in README (#733)
- Add contribution guide
- Update go get for stable version
In the future, github default branch will be develop so running go get github.com/gin-gonic/gin will pull latest code from develop.
- Changed imports to gopkg instead of github in README
- Update README.md
- Logger: skip ANSI color commands if output is not a tty
Special note: 👏 Thanks to @appleboy and @tboerger for their awesome work managing PRs and issues for this version. This just only started :wink:
download
unix · zip
curl -fL -o v1.1.zip https://ratatoskr.space/pkg/gin-go/v1.1.zip
printf '%s %s\n' '51e8e380ba143b9866be2b9845f64e071a3e8a002c6e03369d39cb050879c6ff' 'v1.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/gin-go/v1.1.zip"
$out = "v1.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "51e8e380ba143b9866be2b9845f64e071a3e8a002c6e03369d39cb050879c6ff") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.1.tar.gz https://ratatoskr.space/pkg/gin-go/v1.1.tar.gz
printf '%s %s\n' '4434c3fe8602ada7bb22e1cc9be53b84a257b2b214ba2b49c67a14e0332a816d' 'v1.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/gin-go/v1.1.tar.gz"
$out = "v1.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "4434c3fe8602ada7bb22e1cc9be53b84a257b2b214ba2b49c67a14e0332a816d") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.1.zip
printf '%s %s\n' '51e8e380ba143b9866be2b9845f64e071a3e8a002c6e03369d39cb050879c6ff' 'v1.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.1.zip"
$out = "v1.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "51e8e380ba143b9866be2b9845f64e071a3e8a002c6e03369d39cb050879c6ff") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.1.tar.gz
printf '%s %s\n' '4434c3fe8602ada7bb22e1cc9be53b84a257b2b214ba2b49c67a14e0332a816d' 'v1.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.1.tar.gz"
$out = "v1.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "4434c3fe8602ada7bb22e1cc9be53b84a257b2b214ba2b49c67a14e0332a816d") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.1.zip | zip | 136.5 KiB |
blake3-24 ced582449c3860c8e40b39272413d0c161506d2d4f9536db
sha256 51e8e380ba143b9866be2b9845f64e071a3e8a002c6e03369d39cb050879c6ff
sha1 c836c1acb62c1d5ae84312a120bfe955400a53d2
|
| v1.1.tar.gz | tar.gz | 108.5 KiB |
blake3-24 abf4b6936d16ac734c9cdbcbfd00d81e7436d68c86f348ee
sha256 4434c3fe8602ada7bb22e1cc9be53b84a257b2b214ba2b49c67a14e0332a816d
sha1 212cdaab3ef888a4c64e884b3c8acea0e3b597d4
|
install
bazel
http_archive(
name = "gin-go",
urls = ["https://ratatoskr.space/pkg/gin-go/v1.1.tar.gz"],
integrity = "sha256-RDTD/oYCrae7IuHMm+U7hKJXsrIUuitJxnoU4DMqgW0=",
strip_prefix = "gin-go-v1.1",
)
zig
.url = "https://ratatoskr.space/pkg/gin-go/v1.1.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "gin-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.1.tar.gz"],
integrity = "sha256-RDTD/oYCrae7IuHMm+U7hKJXsrIUuitJxnoU4DMqgW0=",
strip_prefix = "gin-go-v1.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/gin-go/v1.1.tar.gz",