Skip to content

Commit

Permalink
feat(version): bump to 0.1.29
Browse files Browse the repository at this point in the history
  • Loading branch information
h2non committed Dec 18, 2016
1 parent 4e6ed64 commit 7502daa
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.1.29 / 2016-12-18

* feat(max-allowed-size): add new option max-allowed-size in bytes
* fix(max-allowed-size): HEAD response handling
- fix(usage): correct help message of 'allowed-origins'

## 0.1.28 / 01-10-2016

- feat(#95): use `[email protected]`.
Expand Down
8 changes: 4 additions & 4 deletions benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ pid=$!
suite() {
echo "$1 --------------------------------------"
echo "POST http://localhost:$port/$2" | vegeta attack \
-duration=10s \
-rate=20 \
-duration=30s \
-rate=50 \
-body="./fixtures/large.jpg" \ | vegeta report
sleep 1
}

# Run suites
suite "Crop" "crop?width=800&height=600"
suite "Resize" "resize?width=200"
suite "Rotate" "rotate?rotate=180"
suite "Enlarge" "enlarge?width=1600&height=1200"
#suite "Rotate" "rotate?rotate=180"
#suite "Enlarge" "enlarge?width=1600&height=1200"
suite "Extract" "extract?top=50&left=50&areawidth=200&areaheight=200"

# Kill the server
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import "gopkg.in/h2non/bimg.v1"

const Version = "0.1.28"
const Version = "0.1.29"

type Versions struct {
ImaginaryVersion string `json:"imaginary"`
Expand Down

0 comments on commit 7502daa

Please sign in to comment.