From cbdd9b84144a131a7a6d80655158fe0232e4953e Mon Sep 17 00:00:00 2001 From: "mail@sobolevn.me" Date: Sun, 13 Mar 2016 14:11:38 +0300 Subject: [PATCH 1/3] release --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cff265b3..8697ae20 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ This project is still under development. Current objectives: - add `trust-model` parameter to `git-secret-hide` - autocomplete for `zsh` plugin - extra tests -- precompiled distribution for `RPM` +- precompiled distribution for `RPM`, add dependencies for `.deb` package - integrate [`shellcheck`](https://github.com/koalaman/shellcheck) for code style tests - create `CONTRIBUTING.md` with development process explained - сygwin support (?) From a9cea588bbcec2b2c4a5df694f13bcd2973643ef Mon Sep 17 00:00:00 2001 From: sobolevn Date: Sun, 10 Apr 2016 14:30:36 +0300 Subject: [PATCH 2/3] version 0.1.1 --- src/_utils/_git_secret_tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_utils/_git_secret_tools.sh b/src/_utils/_git_secret_tools.sh index d1a1adf8..175fb782 100644 --- a/src/_utils/_git_secret_tools.sh +++ b/src/_utils/_git_secret_tools.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -GITSECRET_VERSION="0.1.0" +GITSECRET_VERSION="0.1.1" # Global variables: From a5abefba90628d6ae4e861723089614036aa8af3 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Sat, 14 May 2016 14:27:08 +0300 Subject: [PATCH 3/3] release v0.1.2 --- CHANGELOG.md | 8 ++++++++ src/_utils/_git_secret_tools.sh | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba5bff49..65ac3019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Version 0.1.2 + +- Added `-i` option to the `git-secret-add` command, which auto adds unignored files to the `.gitignore` +- Documentation improved with `Configuration` section +- Added extra tests: for custom filenames and new features +- `Makefile` improvements with `.PHONY` and `install` target +- `.github` templates added + ## Version 0.1.1 - Added `--dry-run` option to the `git secret` command, which prevents any actions. diff --git a/src/_utils/_git_secret_tools.sh b/src/_utils/_git_secret_tools.sh index be9fe30a..4542621b 100644 --- a/src/_utils/_git_secret_tools.sh +++ b/src/_utils/_git_secret_tools.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -GITSECRET_VERSION="0.1.1" +GITSECRET_VERSION="0.1.2" # Global variables: WORKING_DIRECTORY="$PWD"