1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Version v0.10.14

This commit is contained in:
Laurent Cozic 2017-11-16 11:42:06 +00:00
parent 9a10984e84
commit af78721568
3 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "Joplin",
"version": "0.10.5",
"version": "0.10.14",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "Joplin",
"version": "0.10.10",
"version": "0.10.14",
"description": "Joplin for Desktop",
"main": "main.js",
"scripts": {

View File

@ -0,0 +1,10 @@
#!/bin/bash
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
APP_DIR="$ROOT_DIR/app"
cd "$APP_DIR"
VERSION="$(npm version patch)"
git add -A
git commit -m "Version $VERSION"
git tag $VERSION
git push && git push --tags