Skip to content

Commit

Permalink
Release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
philippgille committed May 13, 2018
1 parent 49c579c commit 3bde55c
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 deletions.
3 changes: 3 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
vNext
-----

v0.2.1 (2018-05-13)
-------------------

- Improved: Increased interface table width to 80 for long interface names
- Fixed: No suggested URL in several cases ([issue #7](https://github.com/philippgille/serve/issues/7))
- Fixed: Snap package doesn't work ([issue #14](https://github.com/philippgille/serve/issues/14))
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
2 changes: 1 addition & 1 deletion build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fi
declare -a arr=("Windows" "macOS" "Linux")
for MYOS in "${arr[@]}"
do
# Sleep to prevent: tar: serve_v0.2.0_macOS_x64: file changed as we read it
# Sleep to prevent: tar: serve_v0.2.1_macOS_x64: file changed as we read it
sleep 1s
tar -czf "${ARTIFACTSDIR}/serve_v${VERSION}_${MYOS}_x64.tar.gz" -C "${ARTIFACTSDIR}" "serve_v${VERSION}_${MYOS}_x64"
done
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Follow these steps manually, or jump below for the PowerShell commands:
- Create a function that calls the binary in your shell's profile
- The PowerShell profile is located at `$profile`
- Example: `C:\Users\John\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1`
- Example function: `function serve { $env:USERPROFILE\Downloads\serve_v0.2.0_Windows_x64\serve.exe $args }`
- Example function: `function serve { $env:USERPROFILE\Downloads\serve_v0.2.1_Windows_x64\serve.exe $args }`
- Don't forget to load your profile afterwards with `. $profile`

As PowerShell commands:
Expand Down
5 changes: 3 additions & 2 deletions homebrew/serve.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
class Serve < Formula
desc "`serve` starts a simple temporary static file server in your current directory and prints your IP address to share with colleagues"
homepage "https://github.com/philippgille/serve"
url "https://github.com/philippgille/serve/releases/download/v0.2.0/serve_v0.2.0_macOS_x64.zip"
version "0.2.0"
url "https://github.com/philippgille/serve/releases/download/v0.2.1/serve_v0.2.1_macOS_x64.zip"
sha256 "5C4FEDEA1D6DB0F59DFFFA60986B3E12B4DDD64CDDF9394E15CA94F5635B9FE8"
version "0.2.1"

bottle :unneeded

Expand Down
5 changes: 3 additions & 2 deletions scoop/serve.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"version": "0.2.0",
"url": "https://github.com/philippgille/serve/releases/download/v0.2.0/serve_v0.2.0_Windows_x64.zip",
"version": "0.2.1",
"url": "https://github.com/philippgille/serve/releases/download/v0.2.1/serve_v0.2.1_Windows_x64.zip",
"bin": "serve.exe",
"homepage": "https://github.com/philippgille/serve",
"hash": "1CEF8B0D6CE7F8F4E2116F5471D1B299B6852AF109B8E6F397C70FFC2C37A910",
"checkver": {
"github": "https://github.com/philippgille/serve"
},
Expand Down
2 changes: 1 addition & 1 deletion serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (

// Increment and remove "+" in release commits.
// Add "+" after release commits.
const version = "v0.2.0"
const version = "v0.2.1"

// Flags in alphabetical order, just like "-h" prints them
var (
Expand Down
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: serve
version: "0.2.0"
version: "0.2.1"
summary: serve starts a simple temporary static file server in your current directory # 79 char long summary
description: |
serve starts a simple temporary static file server in your current directory
Expand Down Expand Up @@ -28,7 +28,7 @@ parts:
# and also leads to reproducable builds thanks to the tag.
source: https://github.com/philippgille/serve.git
source-depth: 1
source-tag: v0.2.0
source-tag: v0.2.1

apps:
serve:
Expand Down

0 comments on commit 3bde55c

Please sign in to comment.