diff --git a/README.md b/README.md index 71ff993..5623d17 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![efde version](https://img.shields.io/badge/status-Active-green.svg) ![efde_lastcommin](https://img.shields.io/github/last-commit/mmaximo33/efde.svg) ![efde_release](https://img.shields.io/github/release/mmaximo33/efde.svg) -![efde_since release](https://img.shields.io/github/commits-since/mmaximo33/efde/2.0.0.svg) +![efde_since release](https://img.shields.io/github/commits-since/mmaximo33/efde/2.1.0.svg) ![efde_since release](https://img.shields.io/github/commits-since/mmaximo33/efde/1.2.0.svg) ![issue-open](https://img.shields.io/github/issues/mmaximo33/efde.svg) diff --git a/docs/developer.md b/docs/developer.md index adbcdb6..f5c1137 100644 --- a/docs/developer.md +++ b/docs/developer.md @@ -44,6 +44,18 @@ git status git push origin --force-with-lease ``` +### Full developer +To have all the developer features activated modify `bin/efde.sh` + +```sh +declare -gA GLOBAL_EFDE_CONFIG=( +... +[EFDE_MODE_DEBUG]=true # Debug Messages +[EFDE_MODE_DEVELOP]=true # MMTodo: Prepared for create tmps +.. +) +``` + ## Admin ### To Develop ```sh @@ -51,7 +63,7 @@ git switch develop git fetch origin git merge -# Remember to update the CHANGELOG.md +# Remember to update the docs CHANGELOG.md, README.md git add CHANGELOG.md git commit -m "fix (doc): update changelog" @@ -63,8 +75,8 @@ git push origin develop --force-with-lease # See https://semver.org/ git fetch --tags -git tag -m " comments" -# git 1.0.0 -m "1.0.0 comments" +git tag -a -m " comments" +# git tag -a 1.0.0 -m "1.0.0 comments" git push origin