Chart.js/MAINTAINING.md

35 lines
1.5 KiB
Markdown
Raw Normal View History

2016-08-28 17:34:22 +02:00
# Maintaining
2016-08-28 17:34:22 +02:00
## Release Process
2016-08-28 17:34:22 +02:00
Chart.js relies on [Travis CI](https://travis-ci.org/) to automate the library [releases](https://github.com/chartjs/Chart.js/releases).
### Releasing a New Version
1. Update the release version on [GitHub](https://github.com/chartjs/Chart.js/releases/new) for the release drafted by the `release-drafter` tool
2. Publish the release
3. follow the build process on [GitHub Actions](https://github.com/chartjs/Chart.js/actions?query=workflow%3A%22Node.js+Package%22)
2016-08-28 17:34:22 +02:00
Creation of this tag triggers a new build:
* `Chart.js.zip` package is generated, containing dist files and examples
* `dist/*.js`, `types/*.ts`, and `Chart.js.zip` are attached to the GitHub release (downloads)
* A new npm package is published on [npmjs](https://www.npmjs.com/package/chart.js)
2016-08-28 17:34:22 +02:00
Finally, [cdnjs](https://cdnjs.com/libraries/Chart.js) is automatically updated from the npm release.
### Releasing a patch version
If there is a need to create a patch version for an older release:
1. Create a branch for the patch version (without the `v` prefix)
2. Cherry pick the needed commit(s) to that new branch from master
3. Trigger the release-drafter workflow on that branch from the actions.
4. Follow the procedure for [Releasing a New Version](#releasing-a-new-version)
2016-08-28 17:34:22 +02:00
### Further Reading
* [GitHub Action releases](https://github.com/chartjs/Chart.js/pull/7891)
2020-04-28 23:34:49 +02:00
* [dist/* files](https://github.com/chartjs/Chart.js/issues/3033)
2016-09-13 05:21:40 +02:00
* [cdnjs npm auto update](https://github.com/cdnjs/cdnjs/pull/8401)