From acddfee6bdf6e7ee9fc4d5c5b85d9eb566e58f36 Mon Sep 17 00:00:00 2001 From: zhoukk Date: Sat, 11 May 2019 10:58:49 +0800 Subject: [PATCH] chore(release): v0.4.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ README.md | 8 ++++---- README.zh-CN.md | 8 ++++---- web/package.json | 2 +- 4 files changed, 33 insertions(+), 9 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0fe7bd2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,24 @@ +# [](https://github.com/zhoukk/kimg/compare/v0.4.0...v) (2019-05-11) + + + +# [0.4.0](https://github.com/zhoukk/kimg/compare/71db1ad...v0.4.0) (2019-05-11) + + +### Bug Fixes + +* can not resolv hostname ([6e23448](https://github.com/zhoukk/kimg/commit/6e23448)) +* change the image url generate ([bd479e5](https://github.com/zhoukk/kimg/commit/bd479e5)) +* fix format is none, output image format error ([bf5fecd](https://github.com/zhoukk/kimg/commit/bf5fecd)) + + +### Features + +* add host config, and return image url. ([866c466](https://github.com/zhoukk/kimg/commit/866c466)) +* add memory cache, change redis golang package. ([3e078fa](https://github.com/zhoukk/kimg/commit/3e078fa)) +* add mutex in file storage, use ioutil to read and write file. ([71db1ad](https://github.com/zhoukk/kimg/commit/71db1ad)) +* use yaml configuration file instead of ini ([b7c5277](https://github.com/zhoukk/kimg/commit/b7c5277)) +* **gif:** support gif process ([7b24df2](https://github.com/zhoukk/kimg/commit/7b24df2)) + + + diff --git a/README.md b/README.md index 149239c..caefb15 100644 --- a/README.md +++ b/README.md @@ -12,15 +12,15 @@ English | [简体中文](./README.zh-CN.md) - run with linux binary ```console -$ wget -O- https://github.com/zhoukk/kimg/releases/download/release-v0.3.2/kimg_v0.3.2_linux.tar.gz | tar xf - -$ cd kimg_v0.3.2_linux +$ wget -O- https://github.com/zhoukk/kimg/releases/download/release-v0.4.0/kimg_v0.4.0_linux.tar.gz | tar xf - +$ cd kimg_v0.4.0_linux $ ./kimg ``` - run with docker ```console -$ docker pull zhoukk/kimg:v0.3.2 -$ docker run --rm -p 80:80 zhoukk/kimg:v0.3.2 +$ docker pull zhoukk/kimg:v0.4.0 +$ docker run --rm -p 80:80 zhoukk/kimg:v0.4.0 ``` > open a browser and have fun diff --git a/README.zh-CN.md b/README.zh-CN.md index ff45342..fb4ea00 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -12,15 +12,15 @@ - 从linux二进制运行文件启动 ```console -$ wget -O- https://github.com/zhoukk/kimg/releases/download/release-v0.3.2/kimg_v0.3.2_linux.tar.gz | tar xf - -$ cd kimg_v0.3.2_linux +$ wget -O- https://github.com/zhoukk/kimg/releases/download/release-v0.4.0/kimg_v0.4.0_linux.tar.gz | tar xf - +$ cd kimg_v0.4.0_linux $ ./kimg ``` - 从docker镜像启动 ```console -$ docker pull zhoukk/kimg:v0.3.2 -$ docker run --rm -p 80:80 zhoukk/kimg:v0.3.2 +$ docker pull zhoukk/kimg:v0.4.0 +$ docker run --rm -p 80:80 zhoukk/kimg:v0.4.0 ``` > 打开浏览器体验 diff --git a/web/package.json b/web/package.json index ca2936d..96c7c73 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "kimg", - "version": "0.3.2", + "version": "0.4.0", "scripts": { "start": "umi dev", "build": "umi build",