diff --git a/CHANGELOG.md b/CHANGELOG.md index 0656f2ae8..917017fa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ + ## Release Note (`0.0.3`) @@ -225,3 +226,31 @@ - [[```da1dd85c```](https://github.com/jina-ai/clip-as-service/commit/da1dd85cba6bc72c4ff83fd0c00c2651eef56075)] __-__ hide top-level setup (*Han Xiao*) - [[```fe22c3f2```](https://github.com/jina-ai/clip-as-service/commit/fe22c3f21ee180c7f74e1a996572b0eb04a36a6d)] __-__ __version__: the next version will be 0.1.6 (*Jina Dev Bot*) + +## Release Note (`0.1.7`) + +> Release time: 2022-03-30 11:40:37 + + + +🙇 We'd like to thank all contributors for this new release! In particular, + Han Xiao, Roshan Jossy, Jina Dev Bot, 🙇 + + +### 🆕 New Features + + - [[```d56b1463```](https://github.com/jina-ai/clip-as-service/commit/d56b146392c16d7f917b3a6baeba9d6b77121249)] __-__ __client__: more comprehensive progressbar (#667) (*Han Xiao*) + +### 🐞 Bug fixes + + - [[```b4624dd4```](https://github.com/jina-ai/clip-as-service/commit/b4624dd408e0ee3908f57b7e5e598e5631de3d95)] __-__ __client__: raise value when embedding is empty (#666) (*Han Xiao*) + +### 📗 Documentation + + - [[```cfaba711```](https://github.com/jina-ai/clip-as-service/commit/cfaba7119c334d87a5f7860cc4df65a52f19c750)] __-__ __tracking__: add scarf tracking (#665) (*Roshan Jossy*) + +### 🍹 Other Improvements + + - [[```9e276744```](https://github.com/jina-ai/clip-as-service/commit/9e27674447d041c21078082478acc234d5c0e3f7)] __-__ fix readme (*Han Xiao*) + - [[```1c2de8da```](https://github.com/jina-ai/clip-as-service/commit/1c2de8da0ac3cfa7fa7304f6c55b4979747f22a5)] __-__ __version__: the next version will be 0.1.7 (*Jina Dev Bot*) + diff --git a/client/clip_client/__init__.py b/client/clip_client/__init__.py index e1183f2b7..d9eb1cc3e 100644 --- a/client/clip_client/__init__.py +++ b/client/clip_client/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.1.7' +__version__ = '0.1.8' from .client import Client diff --git a/server/clip_server/__init__.py b/server/clip_server/__init__.py index 124e46203..c3bb2961b 100644 --- a/server/clip_server/__init__.py +++ b/server/clip_server/__init__.py @@ -1 +1 @@ -__version__ = '0.1.7' +__version__ = '0.1.8'