Skip to content

Commit

Permalink
docs: Update changelog, publishing.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelbandito committed Aug 24, 2021
1 parent f2b3003 commit d6a1a5e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
19 changes: 8 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,20 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v4.0.0-alpha.1](https://github.com/cision/rover-ui/compare/v3.0.0-alpha.1...v4.0.0-alpha.1)
#### [v4.0.0-alpha.1](https://github.com/cision/rover-ui/compare/v2.10.2...v4.0.0-alpha.1)

- V3.0.0 alpha.1 [`#335`](https://github.com/cision/rover-ui/pull/335)
- chore: Update Kite snapshop test to reflect v3 button class names [`#334`](https://github.com/cision/rover-ui/pull/334)
- feat: EVER-13206: a11y focus states for buttons and links [`#317`](https://github.com/cision/rover-ui/pull/317)
- Feature ever 13205 a11y buttons and links [`#311`](https://github.com/cision/rover-ui/pull/311)

#### [v3.0.0](https://github.com/cision/rover-ui/compare/v3.0.0-alpha.1...v3.0.0)

> 24 August 2021
- Chore: Deprecate Node 10.x support [`#336`](https://github.com/cision/rover-ui/pull/336)

#### [v3.0.0-alpha.1](https://github.com/cision/rover-ui/compare/v2.10.2...v3.0.0-alpha.1)
#### [v2.11.0](https://github.com/cision/rover-ui/compare/v2.10.2...v2.11.0)

> 20 August 2021
> 9 August 2021
- V3.0.0 alpha.1 [`#335`](https://github.com/cision/rover-ui/pull/335)
- chore: Update Kite snapshop test to reflect v3 button class names [`#334`](https://github.com/cision/rover-ui/pull/334)
- feat: EVER-13206: a11y focus states for buttons and links [`#317`](https://github.com/cision/rover-ui/pull/317)
- Feature ever 13205 a11y buttons and links [`#311`](https://github.com/cision/rover-ui/pull/311)
- v2.11.0 [`#333`](https://github.com/cision/rover-ui/pull/333)
- add ripple loader component from trendkite-ui [`#329`](https://github.com/cision/rover-ui/pull/329)
- Feature/rover UI/ever 13326/kite component [`#324`](https://github.com/cision/rover-ui/pull/324)
- feat: Button passes size prop to nested Addons via context [`#331`](https://github.com/cision/rover-ui/pull/331)
Expand Down
9 changes: 8 additions & 1 deletion PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ yarn storybook:deploy

# Publishing a pre-release version

You should only do this if you're an admin.
You should only do this if you're an admin. Instructions based loosely on [Prereleases and Npm](https://medium.com/@mbostock/prereleases-and-npm-e778fc5e2420)

Edit the version in `package.json` manually. Pre-release versions should be named in this format:

Expand All @@ -62,5 +62,12 @@ For example, `v4.0.0-alpha.1` is the first iteration of what will one day become
Then, from the command line:

```sh
gco -b v{MAJOR}.0.0 # E.g. gco -b v5.0.0
yarn update-changelog
git add .
git commit -m "Deploying v{MAJOR}.0.0-alpha.{BUILD}" # E.g. git commit -m "Deploying v5.0.0-alpha.2"
git push
git tag v{MAJOR}.0.0-alpha.{BUILD} # E.g. git tag v5.0.0-alpha.2
git push --tags
npm publish --tag next
```

0 comments on commit d6a1a5e

Please sign in to comment.