set version 0.1.5
This commit is contained in:
parent
2ccfa63e7a
commit
bddc33e79b
2 changed files with 17 additions and 1 deletions
16
README.md
16
README.md
|
@ -40,6 +40,22 @@ npm link
|
|||
dxfl
|
||||
```
|
||||
|
||||
## Release
|
||||
|
||||
First you need an account on npmjs.com and be a maintainer of the `dxfl` package (ask quentin).
|
||||
Do not forget also to run `npm login` to bind your account with the CLI.
|
||||
|
||||
Then to publish a release:
|
||||
|
||||
```bash
|
||||
vim package.json # update the version in this file
|
||||
git commit -a -m 'set version 0.1.5' # commit your change
|
||||
git push # send update
|
||||
git tag -m 'v0.1.5' v0.1.5 # create associated tag
|
||||
git push --tags # push tag
|
||||
npm publish # build and push the package
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
This software is distributed under the EUPL-1.2 license.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "dxfl",
|
||||
"version": "0.1.4",
|
||||
"version": "0.1.5",
|
||||
"description": "",
|
||||
"license": "EUPL-1.2",
|
||||
"author": "Deuxfleurs Team <coucou@deuxfleurs.fr>",
|
||||
|
|
Loading…
Add table
Reference in a new issue