diff --git a/CHANGELOG.md b/CHANGELOG.md index 0382440a..673dcd67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +### [0.8.1](https://github.com/ssube/onnx-web/compare/v0.8.0...v0.8.1) (2023-03-11) + + +### Bug Fixes + +* **api:** make cache global within each worker process ([#227](https://github.com/ssube/onnx-web/issues/227)) ([575cb88](https://github.com/ssube/onnx-web/commit/575cb8831b0038b43df36751cd0a94c4ee6a9d3b)) +* **api:** only run GC when a diffusion model has been replaced ([cb2b054](https://github.com/ssube/onnx-web/commit/cb2b054fde9e20be5aa6b15fa4f9887434efcfb0)) +* **api:** remove unused num_workers logic from server ([01d3519](https://github.com/ssube/onnx-web/commit/01d3519aa3f475183311ab4ae72e8cc4eb03d2ed)) +* **docs:** remove reference to removed num_workers server variable ([db61697](https://github.com/ssube/onnx-web/commit/db6169705ba2656f131ca56e4e6d99f5965a9a74)) +* **tests:** clear cache between tests ([919f88c](https://github.com/ssube/onnx-web/commit/919f88c7d06bd6a1695c2f01df93c9c3ccbb4caa)) + ## [0.8.0](https://github.com/ssube/onnx-web/compare/v0.7.1...v0.8.0) (2023-03-11) diff --git a/README.md b/README.md index e2046be7..a1148944 100644 --- a/README.md +++ b/README.md @@ -451,7 +451,7 @@ To update the server, make sure you are on the `main` branch and pull the latest > git pull ``` -If you want to run a specific tag of the server, run `git checkout v0.8.0` with the desired tag. +If you want to run a specific tag of the server, run `git checkout v0.8.1` with the desired tag. ### Building the client diff --git a/api/params.json b/api/params.json index 14c3f7b4..957b4ed6 100644 --- a/api/params.json +++ b/api/params.json @@ -1,5 +1,5 @@ { - "version": "0.8.0", + "version": "0.8.1", "batch": { "default": 1, "min": 1, diff --git a/api/setup.py b/api/setup.py index 78e03ec2..34e7e35e 100644 --- a/api/setup.py +++ b/api/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="onnx-web", - version="0.8.0", + version="0.8.1", author="ssube", author_email="seansube@gmail.com", description="web UI for running ONNX models", diff --git a/gui/package.json b/gui/package.json index d2eec5c4..f6f8314b 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,6 +1,6 @@ { "name": "@apextoaster/onnx-web", - "version": "0.8.0", + "version": "0.8.1", "description": "onnx web gui", "type": "module", "main": "out/src/main.js",