diff --git a/CHANGELOG.md b/CHANGELOG.md index aa81dbeb..858e33c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/PUBLISHING.md b/PUBLISHING.md index fbb34650..b98b68a5 100644 --- a/PUBLISHING.md +++ b/PUBLISHING.md @@ -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: @@ -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 ```