From 84b438bf325146b141da602c7242c4561053c024 Mon Sep 17 00:00:00 2001 From: Vinzent Date: Mon, 15 Mar 2021 20:04:32 +0100 Subject: [PATCH] chore(release): 1.6.0 --- CHANGELOG.md | 19 +++++++++++++++++++ manifest.json | 4 ++-- package.json | 5 ++++- 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab7dc708..d7f80d2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.6.0](https://github.com/denolehov/obsidian-git/compare/1.5.0...1.6.0) (2021-03-15) + + +### Features + +* add setting for auto-pull on backup ([5c39e0d](https://github.com/denolehov/obsidian-git/commit/5c39e0d320615cfb73cdb414088e3a02a74e9faf)) +* commit changes with specified message ([e992199](https://github.com/denolehov/obsidian-git/commit/e9921994e135ac01f5eda8f23d7c4db312cedd05)), closes [#26](https://github.com/denolehov/obsidian-git/issues/26) +* list filenames affected by commit in the commit body ([0ce9ac3](https://github.com/denolehov/obsidian-git/commit/0ce9ac310c402a3a7a679fc30e591a045d3a4fb2)), closes [#3](https://github.com/denolehov/obsidian-git/issues/3) +* pull before push ([30d8798](https://github.com/denolehov/obsidian-git/commit/30d8798d433f080404bd22c8a33a1ea49b37648f)), closes [#43](https://github.com/denolehov/obsidian-git/issues/43) + + +### Bug Fixes + +* does not push when no changes detected ([d016dee](https://github.com/denolehov/obsidian-git/commit/d016dee92db4af02446b112de580b5197a3303f3)), fixes [#33](https://github.com/denolehov/obsidian-git/issues/33) +* git repository check ([98fa9f7](https://github.com/denolehov/obsidian-git/commit/98fa9f758f9b08546c0c9319a14fd25b85af4503)) +* initialization procedure ([1d71418](https://github.com/denolehov/obsidian-git/commit/1d714181d8967fa6089cd380b879ce652332a3fa)), fixes [#27](https://github.com/denolehov/obsidian-git/issues/27) +* lastUpdate gets changed when no changes are detected ([71d2a59](https://github.com/denolehov/obsidian-git/commit/71d2a59f1d5ea7f7fd08e77b1802a47d0aae3f46)) +* needed tracking branch to commit ([619c5d1](https://github.com/denolehov/obsidian-git/commit/619c5d182e95c5f1ca946c56d8c002e6b3f09daf)) + ## [1.5.0](https://github.com/denolehov/obsidian-git/compare/v1.2.0...v1.5.0) (2020-12-08) diff --git a/manifest.json b/manifest.json index b508f372..d554f343 100644 --- a/manifest.json +++ b/manifest.json @@ -4,5 +4,5 @@ "description": "Backup your vault with git.", "isDesktopOnly": true, "js": "main.js", - "version": "1.5.0" -} \ No newline at end of file + "version": "1.6.0" +} diff --git a/package.json b/package.json index b49e0241..12b18df8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-git", - "version": "1.5.0", + "version": "1.6.0", "description": "Backup your Obsidian (https://obsidian.md) vault with git", "main": "main.js", "scripts": { @@ -11,6 +11,9 @@ "keywords": [], "author": "", "license": "MIT", + "standard-version": { + "t": "" + }, "devDependencies": { "@rollup/plugin-commonjs": "^15.1.0", "@rollup/plugin-node-resolve": "^9.0.0",