feat(version): bump to 0.1.29

This commit is contained in:
Tomas Aparicio
2016-12-18 15:03:36 +00:00
parent 4e6ed64134
commit 7502daa751
3 changed files with 11 additions and 5 deletions
+6
View File
@@ -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 `libvips@8.4.1`.
+4 -4
View File
@@ -16,8 +16,8 @@ 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
}
@@ -25,8 +25,8 @@ suite() {
# 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
+1 -1
View File
@@ -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"`