Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
erosdome-personal committed May 25, 2017
1 parent 0308bc3 commit 214093a
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 7 deletions.
51 changes: 49 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,54 @@
## Changelog (Current version: 1.0.5)
## Changelog (Current version: 1.0.6)

-----------------

## 1.0.6 (2017 May 25)

### Release Notes

* Input categories added
* Workflow description added
* UX update - top menu now sticks to the top of the screen when scrolling
* Issue #123 fixed

### Install or upgrade

To install this version, run the following commands (in a bash shell):

```
bitrise plugin install --source https://github.com/bitrise-io/bitrise-workflow-editor.git --version 1.0.6
```

To update the already installed plugin to the latest version:

```
bitrise plugin update workflow-editor
```

That's all, you're ready to go!

To run the workflow editor plugin call:

```
bitrise :workflow-editor
```

### Release Commits - 1.0.5 -> 1.0.6

* [a614ce0] erosdome - v1.0.6 (2017 May 25)
* [0308bc3] erosdome - Make top menu sticky when scrolling (#143) (2017 May 25)
* [2127f2f] erosdome - iframe message updated (2017 May 25)
* [6893e14] erosdome - add step - expanded state removed (2017 May 24)
* [50f57bd] erosdome - typo fix (2017 May 24)
* [8b322e9] erosdome - add step sidebar - load step icons when loading step data (2017 May 24)
* [39b6003] erosdome - environment variable replace/no replace added (2017 May 24)
* [aeac161] erosdome - Workflow description added (#142) (2017 May 24)
* [70eff20] erosdome - middleman svg helper method fix (2017 May 23)
* [bc207d9] erosdome - input categories added (2017 May 23)
* [256f56e] erosdome - docker configuration updated - fix port for development mode (2017 May 22)
* [f231127] erosdome - triggers - normalize method should order them by type (2017 May 22)


## 1.0.5 (2017 May 19)

### Release Notes
Expand Down Expand Up @@ -681,4 +728,4 @@ bitrise :workflow-editor

-----------------

Updated: 2017 May 19
Updated: 2017 May 25
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ bitrise run go-install
- In terminal, run `chmod +x <path to generated binary> && <path to generated binary> version --full`
- After finish and double-checking build number and commit hash on Bitrise, run <path to generated binary> to check if binary is working
- On GitHub, attach the binaries, then select *Publish release*
- On discuss.bitrise.io, in *Changelog* category, create a topic called **Offline Workflow Editor / Workflow Editor v2 vX.X.X released**. Description should include the changelog (with URLs to related GitHub issues) and a link to the installation instructions.
- On discuss.bitrise.io, in *Changelog* category, create a topic called **Workflow Editor vX.X.X released**. Description should include the changelog (with URLs to related GitHub issues) and a link to the installation instructions.
- On GitHub, close the related GitHub issues, and milestones if the issues were assigned to any.
4 changes: 2 additions & 2 deletions bitrise-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: workflow-editor
description: |-
Bitrise Workflow Editor.
executable:
osx: https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.0.5/workflow-editor-Darwin-x86_64
linux: https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.0.5/workflow-editor-Linux-x86_64
osx: https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.0.6/workflow-editor-Darwin-x86_64
linux: https://github.com/bitrise-io/bitrise-workflow-editor/releases/download/1.0.6/workflow-editor-Linux-x86_64
requirements:
- tool: bitrise
min_version: 1.5.3
Expand Down
2 changes: 1 addition & 1 deletion bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git

app:
envs:
- RELEASE_VERSION: 1.0.5
- RELEASE_VERSION: 1.0.6
- BIN_NAME: workflow-editor

- PORT: "1234"
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// VERSION ...
const VERSION = "1.0.5"
const VERSION = "1.0.6"

0 comments on commit 214093a

Please sign in to comment.