diff --git a/README.md b/README.md index e0ab101..55ad4d7 100644 --- a/README.md +++ b/README.md @@ -237,7 +237,7 @@ routines with an standard CVS system as if they were normal application code. Also, the existing tools are too complex and require too much knowledge to start a small project. -## Todo +## ToDo * Undo changes when there is an error applying a version using "undo" files. * Use a custom *Dockerfile* for local database container. diff --git a/myvc.js b/myvc.js index 43ba8d3..7ab7575 100755 --- a/myvc.js +++ b/myvc.js @@ -325,7 +325,7 @@ class MyVC { } if (notFound) { - console.warn(`Commit id (${commitSha}) not found trying to fetch from git remote`.yellow); + console.warn(`Database commit not found, trying git fetch`.yellow); await repo.fetchAll(); commit = await repo.getCommit(commitSha); } diff --git a/package.json b/package.json index de2b141..756eef4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "myvc", - "version": "1.4.4", + "version": "1.4.5", "author": "Verdnatura Levante SL", "description": "MySQL Version Control", "license": "GPL-3.0", diff --git a/template/package.json b/template/package.json index e5b9cbb..b9dfe8a 100644 --- a/template/package.json +++ b/template/package.json @@ -8,6 +8,6 @@ "type": "git" }, "dependencies": { - "myvc": "^1.3.11" + "myvc": "^1.4.5" } }