1
0
Fork 0

chore(release): 0.8.1

This commit is contained in:
Sean Sube 2023-03-11 14:32:05 -06:00
parent 919f88c7d0
commit a9906faec8
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
5 changed files with 15 additions and 4 deletions

View File

@ -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. 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) ## [0.8.0](https://github.com/ssube/onnx-web/compare/v0.7.1...v0.8.0) (2023-03-11)

View File

@ -451,7 +451,7 @@ To update the server, make sure you are on the `main` branch and pull the latest
> git pull > 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 ### Building the client

View File

@ -1,5 +1,5 @@
{ {
"version": "0.8.0", "version": "0.8.1",
"batch": { "batch": {
"default": 1, "default": 1,
"min": 1, "min": 1,

View File

@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name="onnx-web", name="onnx-web",
version="0.8.0", version="0.8.1",
author="ssube", author="ssube",
author_email="seansube@gmail.com", author_email="seansube@gmail.com",
description="web UI for running ONNX models", description="web UI for running ONNX models",

View File

@ -1,6 +1,6 @@
{ {
"name": "@apextoaster/onnx-web", "name": "@apextoaster/onnx-web",
"version": "0.8.0", "version": "0.8.1",
"description": "onnx web gui", "description": "onnx web gui",
"type": "module", "type": "module",
"main": "out/src/main.js", "main": "out/src/main.js",