Skip to content

Commit 8dbe840

Browse files
committed
Initial version (0.9.0)
1 parent a8dbc76 commit 8dbe840

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ build:
1313

1414
zbuild:
1515
make build
16-
cd bin; 7zr a -mx9 -t7z ws4sqlite-v0.8.0-linux-`uname -m`.7z ws4sqlite
16+
cd bin; 7zr a -mx9 -t7z ws4sqlite-v0.9.0-linux-`uname -m`.7z ws4sqlite
1717

1818
build-mac:
1919
make build-prepare
@@ -22,7 +22,7 @@ build-mac:
2222

2323
zbuild-mac:
2424
make build-mac
25-
cd bin; 7zr a -mx9 -t7z ws4sqlite-v0.8.0-macos-x86_64.7z ws4sqlite
25+
cd bin; 7zr a -mx9 -t7z ws4sqlite-v0.9.0-macos-x86_64.7z ws4sqlite
2626

2727
docker:
2828
make build
@@ -31,9 +31,9 @@ docker:
3131
docker-publish:
3232
make docker
3333
sudo docker image tag local_ws4sqlite:latest germanorizzo/ws4sqlite:latest
34-
sudo docker image tag local_ws4sqlite:latest germanorizzo/ws4sqlite:v0.8.0
34+
sudo docker image tag local_ws4sqlite:latest germanorizzo/ws4sqlite:v0.9.0
3535
sudo docker push germanorizzo/ws4sqlite:latest
36-
sudo docker push germanorizzo/ws4sqlite:v0.8.0
36+
sudo docker push germanorizzo/ws4sqlite:v0.9.0
3737
sudo docker rmi local_ws4sqlite:latest
3838
sudo docker rmi germanorizzo/ws4sqlite:latest
39-
sudo docker rmi germanorizzo/ws4sqlite:v0.8.0
39+
sudo docker rmi germanorizzo/ws4sqlite:v0.9.0

src/ws4sqlite.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import (
4242
"gopkg.in/yaml.v2"
4343
)
4444

45-
const version = "0.8.0"
45+
const version = "0.9.0"
4646

4747
// Catches the panics and converts the argument in a struct that Fiber uses to
4848
// signal the error, setting the response code and the JSON that is actually returned

0 commit comments

Comments
 (0)