UNPKG

1.46 kBMarkdownView Raw
1
2# Pushing a New Version
3
4Nunjucks attempts to adhere to semantic versioning. The API is very stable, so from here on out it will most likely be point releases.
5
61. Do a `pull` from github to make sure you have all the latest updates
7
82. View all the changes and update CHANGELOG.md:
9
10```
11$ git log --oneline v1.2.3..master
12```
13
14Replace `v1.2.3` with whatever the last version was, and you'll see all the changes going out in this version. Add a new version to CHANGELOG.md and write some notes about what's going out.
15
163. Update the version in `package.json`
17
184. Run the command to make sure the ready-made files for the browser are up-to-date.
19
20```
21$ make browserfiles
22```
23
245. Commit above changes and push to `master`
25
266. Publish to npm:
27
28```
29npm publish
30```
31
327. Go to https://github.com/mozilla/nunjucks/releases and click "Draft a new release". Fill out title and copy what you entered in CHANGELOG.md in the description. (CHANGELOG.md could go away I guess with github's release stuff)
33
348. Make sure docs are up-to-date. If anything, you need to copy all the nunjucks*.js files in `browser/` to the [nunjucks-docs repo](https://github.com/mozilla/nunjucks-docs) in the `files` directory. This is where the "download" link points to in the docs. In `nunjucks-docs`, build the docs:
35
36```
37cd path/to/nunjucks-docs && make prod
38```
39
40And push (force push if necessary) the build out _site folder onto the `gh-pages` branch of the `nunjucks` repo to get it live.