Skip to content

Commit 7d39f81

Browse files
authored
chore(main): release 1.21.0 (#215)
* chore(main): release 1.21.0 * Apply automatic changes Co-authored-by: rubenfiszel <[email protected]>
1 parent 6939f9d commit 7d39f81

File tree

10 files changed

+27
-12
lines changed

10 files changed

+27
-12
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Changelog
22

33

4+
## [1.21.0](https://github.com/windmill-labs/windmill/compare/v1.20.0...v1.21.0) (2022-07-19)
5+
6+
7+
### Features
8+
9+
* add run_wait_result to mimic lambda ability ([6ef3754](https://github.com/windmill-labs/windmill/commit/6ef3754759346b8261934a35bd3bf3983872390f))
10+
11+
12+
### Bug Fixes
13+
14+
* **backend:** clear env variables before running script ([98a5959](https://github.com/windmill-labs/windmill/commit/98a5959fcca19c54715e78055cf8881496209ac0))
15+
* consistent exists/{resource} addition + usage in frontend ([ca66d33](https://github.com/windmill-labs/windmill/commit/ca66d33a4297d2f3a105829650a544f4a89c4615))
16+
* **frontend:** validate username ([9828e54](https://github.com/windmill-labs/windmill/commit/9828e545e9649bc2ac6af598118ef85580fd80f3))
17+
* list with is_skipped + deno-client fix ([6939f9d](https://github.com/windmill-labs/windmill/commit/6939f9d76b1579f2932e08df3f67dc293c642fd0))
18+
419
## [1.20.0](https://github.com/windmill-labs/windmill/compare/v1.19.3...v1.20.0) (2022-07-17)
520

621

backend/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windmill"
3-
version = "1.20.0"
3+
version = "1.21.0"
44
authors = ["Ruben Fiszel <[email protected]>"]
55
edition = "2021"
66

backend/openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: "3.0.3"
22

33
info:
4-
version: 1.20.0
4+
version: 1.21.0
55
title: Windmill server API
66
contact:
77
name: Windmill contact

frontend/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "windmill",
3-
"version": "1.20.0",
3+
"version": "1.21.0",
44
"scripts": {
55
"dev": "svelte-kit dev",
66
"build": "svelte-kit build",

lsp/Pipfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
wmill = ">=1.20.0"
8-
wmill_pg = ">=1.20.0"
7+
wmill = ">=1.21.0"
8+
wmill_pg = ">=1.21.0"
99
requests = "*"
1010
sendgrid = "*"
1111
psycopg2-binary = "*"

python-client/wmill/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wmill"
3-
version = "1.20.0"
3+
version = "1.21.0"
44
description = "A client library for accessing Windmill server wrapping the Windmill client API"
55
license = "Apache-2.0"
66
homepage = "https://windmill.dev"
@@ -16,7 +16,7 @@ include = ["wmill/py.typed"]
1616

1717
[tool.poetry.dependencies]
1818
python = "^3.7"
19-
windmill-api = "^1.20.0"
19+
windmill-api = "^1.21.0"
2020

2121
[build-system]
2222
requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"]

python-client/wmill_pg/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wmill-pg"
3-
version = "1.20.0"
3+
version = "1.21.0"
44
description = "An extension client for the wmill client library focused on pg"
55
license = "Apache-2.0"
66
homepage = "https://windmill.dev"

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.20.0
1+
1.21.0

0 commit comments

Comments
 (0)