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/README.md b/README.md index f78a198a..73eadafb 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This project is still under development. Current objectives: - translate manuals for popular languages - 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 (?) diff --git a/src/_utils/_git_secret_tools.sh b/src/_utils/_git_secret_tools.sh index e506905c..c139393c 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.2" # Global variables: WORKING_DIRECTORY="$PWD"