Skip to content

Commit 3f7f19d

Browse files
v1.1.4
1 parent 44801af commit 3f7f19d

File tree

4 files changed

+44
-6
lines changed

4 files changed

+44
-6
lines changed

CHANGELOG.md

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,45 @@
1-
## Changelog (Current version: 1.1.3)
1+
## Changelog (Current version: 1.1.4)
22

33
-----------------
44

5+
## 1.1.4 (2018 Jan 09)
6+
7+
### Release Notes
8+
9+
* When saving environment variables, filter the ones without key AND value before validating all the environment variables - the user probably just forgot to cancel creating a new one
10+
* Trigger pattern handling update when using "*" character
11+
* "Delete all" action added for uploaded code signing files
12+
13+
### Install or upgrade
14+
15+
To install this version, run the following commands (in a bash shell):
16+
17+
```
18+
bitrise plugin install --source https://github.com/bitrise-io/bitrise-workflow-editor.git --version 1.1.4
19+
```
20+
21+
To update the already installed plugin to the latest version:
22+
23+
```
24+
bitrise plugin update workflow-editor
25+
```
26+
27+
That's all, you're ready to go!
28+
29+
To run the workflow editor plugin call:
30+
31+
```
32+
bitrise :workflow-editor
33+
```
34+
35+
### Release Commits - 1.1.3 -> 1.1.4
36+
37+
* [44801af] Norbert Kovach - delete all functionality for provisioning profile files and certificates (#238) (2018 Jan 09)
38+
* [ebb8761] erosdome - allow * as initial character when entering trigger pattern (#236) (2018 Jan 09)
39+
* [712637e] erosdome - Also strip workflow env vars before validating all variables (#239) (2018 Jan 05)
40+
* [d4101ec] David Breuer - filtered empty key/value env vars and secrets (#234) (2018 Jan 05)
41+
42+
543
## 1.1.3 (2018 Jan 03)
644

745
### Release Notes
@@ -1526,4 +1564,4 @@ bitrise :workflow-editor
15261564

15271565
-----------------
15281566

1529-
Updated: 2018 Jan 03
1567+
Updated: 2018 Jan 09

bitrise-plugin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: workflow-editor
22
description: |-
33
Bitrise Workflow Editor.
44
executable:
5-
osx: https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.1.3/workflow-editor-Darwin-x86_64
6-
linux: https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.1.3/workflow-editor-Linux-x86_64
5+
osx: https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.1.4/workflow-editor-Darwin-x86_64
6+
linux: https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.1.4/workflow-editor-Linux-x86_64
77
requirements:
88
- tool: bitrise
99
min_version: 1.9.0

bitrise.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
33

44
app:
55
envs:
6-
- RELEASE_VERSION: 1.1.3
6+
- RELEASE_VERSION: 1.1.4
77
- BIN_NAME: workflow-editor
88

99
- PORT: "1234"

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

33
// VERSION ...
4-
const VERSION = "1.1.3"
4+
const VERSION = "1.1.4"

0 commit comments

Comments
 (0)