Skip to content

Commit

Permalink
Merge pull request #370 from drone/release/v2.0.1
Browse files Browse the repository at this point in the history
release v2.0.1
  • Loading branch information
Dan Wilson committed Aug 20, 2021
2 parents 639a5bd + 52d48ee commit b305ad9
Show file tree
Hide file tree
Showing 5 changed files with 120 additions and 67 deletions.
1 change: 1 addition & 0 deletions .github_changelog_generator
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
since-tag=v2.0.0
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

## [v2.0.1](https://github.com/drone/drone-ui/tree/v2.0.1) (2021-08-20)

[Full Changelog](https://github.com/drone/drone-ui/compare/v2.0.0...v2.0.1)

**Implemented enhancements:**

- new go file [\#366](https://github.com/drone/drone-ui/pull/366) ([d1wilko](https://github.com/d1wilko))

**Fixed bugs:**

- fix off centre alt avatar bug [\#368](https://github.com/drone/drone-ui/pull/368) ([d1wilko](https://github.com/d1wilko))
- fix single pending build bug and simplify median build time logic [\#367](https://github.com/drone/drone-ui/pull/367) ([d1wilko](https://github.com/d1wilko))
- show error message for steps and stages [\#365](https://github.com/drone/drone-ui/pull/365) ([d1wilko](https://github.com/d1wilko))

**Closed issues:**

- UI crashes when no builds are found [\#364](https://github.com/drone/drone-ui/issues/364)

**Merged pull requests:**

- Merging drone2 branch into master [\#369](https://github.com/drone/drone-ui/pull/369) ([d1wilko](https://github.com/d1wilko))
- allow ~ in project name [\#361](https://github.com/drone/drone-ui/pull/361) ([muffl0n](https://github.com/muffl0n))



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,27 @@ npm run test
We use Conventional Commits for commit messages. You can read more about Conventional Commits [here](https://www.conventionalcommits.org/en/v1.0.0/). [Here](https://cheatography.com/albelop/cheat-sheets/conventional-commits/) you can find a useful Conventional Commits Cheat Sheet.

We try to make our commits "atomic". [Here](https://www.freshconsulting.com/atomic-commits/) and [here](https://en.wikipedia.org/wiki/Atomic_commit) you can read more about Atomic commits.

## Release procedure

Run the changelog generator.

```BASH
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone -p drone-ui -t <secret github token>
```

You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.

Next we tag the PR's with the fixes or enhancements labels. If the PR does not fufil the requirements, do not add a label.

** Before moving on make sure to update the version in `package.json`. **

Run the changelog generator again with the future version according to semver.

```BASH
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone -p drone-ui -t <secret token> --future-release v1.0.0
```

Create your pull request for the release. Get it merged then tag the release.

Please reference the updated changelog in your PR to update `Drone` with the latest UI SHA.
Loading

0 comments on commit b305ad9

Please sign in to comment.