Skip to content

Commit a162de0

Browse files
authored
chore(main): release 1.310.0 (#3579)
* chore(main): release 1.310.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
1 parent 62fcf08 commit a162de0

File tree

15 files changed

+68
-56
lines changed

15 files changed

+68
-56
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [1.310.0](https://github.com/windmill-labs/windmill/compare/v1.309.2...v1.310.0) (2024-04-19)
4+
5+
6+
### Features
7+
8+
* **frontend:** Deeply nested Modals and Drawers ([#3565](https://github.com/windmill-labs/windmill/issues/3565)) ([62fcf08](https://github.com/windmill-labs/windmill/commit/62fcf086ccacdaaf5649dd4d0c6cfdff4eba15e8))
9+
10+
11+
### Bug Fixes
12+
13+
* fix password field ([f9b5da5](https://github.com/windmill-labs/windmill/commit/f9b5da53e8bce1ea1c150de1c605f34c9f068940))
14+
315
## [1.309.2](https://github.com/windmill-labs/windmill/compare/v1.309.1...v1.309.2) (2024-04-18)
416

517
### Bug Fixes

backend/Cargo.lock

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

backend/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windmill"
3-
version = "1.309.2"
3+
version = "1.310.0"
44
authors.workspace = true
55
edition.workspace = true
66

@@ -24,7 +24,7 @@ members = [
2424
]
2525

2626
[workspace.package]
27-
version = "1.309.2"
27+
version = "1.310.0"
2828
authors = ["Ruben Fiszel <[email protected]>"]
2929
edition = "2021"
3030

backend/windmill-api/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.309.2
4+
version: 1.310.0
55
title: Windmill API
66

77
contact:

benchmarks/lib.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { sleep } from "https://deno.land/x/[email protected]/mod.ts";
22
import * as windmill from "https://deno.land/x/[email protected]/mod.ts";
33
import * as api from "https://deno.land/x/[email protected]/windmill-api/index.ts";
44

5-
export const VERSION = "v1.309.2";
5+
export const VERSION = "v1.310.0";
66

77
export async function login(email: string, password: string): Promise<string> {
88
return await windmill.UserService.login({

cli/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ addEventListener("error", (event) => {
3131
}
3232
});
3333

34-
export const VERSION = "v1.309.2";
34+
export const VERSION = "v1.310.0";
3535

3636
let command: any = new Command()
3737
.name("wmill")

0 commit comments

Comments
 (0)