diff --git a/CHANGELOG.md b/CHANGELOG.md index 70cb9ba6a7..28e62ffdbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [1.14.0](https://github.com/windmill-labs/windmill/compare/v1.13.0...v1.14.0) (2022-06-27) + + +### Features + +* add tesseract bin to worker image ([6de9697](https://github.com/windmill-labs/windmill/commit/6de9697d955a06cfb9c64fdb501b4dfa1bb597ad)) +* deno run with --unstable ([4947661](https://github.com/windmill-labs/windmill/commit/4947661b1d91867c022bb8a10a4be3e91f69352c)) +* internal state for script triggers mvp ([dcdb989](https://github.com/windmill-labs/windmill/commit/dcdb989adb8350974289a0c8d2239b245a6e0d41)) + + +### Bug Fixes + +* change default per page to 100 ([fdf95a0](https://github.com/windmill-labs/windmill/commit/fdf95a065e83d733ab6a0f02edb4af16c0a1dfb9)) +* deno exit after result logging ([6c622bc](https://github.com/windmill-labs/windmill/commit/6c622bcc32473361e1f7cb1ea7b0b508929bc1b8)) +* improve error handling ([f98f642](https://github.com/windmill-labs/windmill/commit/f98f6429c1e646c0a836f2f73a03a803aa655583)) +* improve error handling ([2efaf21](https://github.com/windmill-labs/windmill/commit/2efaf2191551c1406618c6d60bd37ca6eff84560)) +* schemaPicker does not display editor by default ([fc0c38f](https://github.com/windmill-labs/windmill/commit/fc0c38ffad18a9ceda44cb8406736c14ba4eb4c2)) +* smart assistant reload ([bb946ed](https://github.com/windmill-labs/windmill/commit/bb946ed5519f59adc559d6959c56e61403389c9d)) + ## [1.13.0](https://github.com/windmill-labs/windmill/compare/v1.12.0...v1.13.0) (2022-06-22) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index bdbaf001c7..45c4edd9ac 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -4478,7 +4478,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.13.0" +version = "1.14.0" dependencies = [ "anyhow", "argon2", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 249deca9df..b0efee4e62 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.13.0" +version = "1.14.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/openapi.yaml b/backend/openapi.yaml index 1e2694d28f..f854cd4ea9 100644 --- a/backend/openapi.yaml +++ b/backend/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.13.0 + version: 1.14.0 title: Windmill server API contact: name: Windmill contact diff --git a/frontend/package-lock.json b/frontend/package-lock.json index c47edabfb3..e3206b8b75 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.13.0", + "version": "1.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.13.0", + "version": "1.14.0", "dependencies": { "@codingame/monaco-jsonrpc": "^0.4.0", "@fortawesome/free-brands-svg-icons": "^6.1.1", diff --git a/frontend/package.json b/frontend/package.json index efc99eefef..a10f76a31b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.13.0", + "version": "1.14.0", "scripts": { "dev": "svelte-kit dev", "build": "svelte-kit build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 03d5fd6b8c..50d9fcf207 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.13.0" -wmill_pg = ">=1.13.0" +wmill = ">=1.14.0" +wmill_pg = ">=1.14.0" requests = "*" sendgrid = "*" psycopg2-binary = "*" diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 69738550ad..e8487a731f 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.13.0" +version = "1.14.0" description = "A client library for accessing Windmill server wrapping the Windmill client API" license = "Apache-2.0" homepage = "https://windmill.dev" @@ -16,7 +16,7 @@ include = ["wmill/py.typed"] [tool.poetry.dependencies] python = "^3.7" -windmill-api = "^1.13.0" +windmill-api = "^1.14.0" [build-system] requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"] diff --git a/python-client/wmill_pg/pyproject.toml b/python-client/wmill_pg/pyproject.toml index 2e8349be36..eaa85f1694 100644 --- a/python-client/wmill_pg/pyproject.toml +++ b/python-client/wmill_pg/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill-pg" -version = "1.13.0" +version = "1.14.0" description = "An extension client for the wmill client library focused on pg" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/version.txt b/version.txt index feaae22bac..850e742404 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.13.0 +1.14.0