All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
- #6 - Remove ubuntu-16.04 from pipeline
- #2 - Add FUNDING.yml
- #3 - Add Semantic Versioning 2.0.0
- Private and public key version 2 with verification hash
- Add prefix PHPVAULT_ to written system environment variables
- Fix PHPStan static code analysis on level 8 (max)
- Fix $_SERVER, $_ENV and putenv writer
- Reading and outputting the same string types no longer requires a key
- Writes vault to $_SERVER, $_ENV and putenv
- Keep PHP 7.4 compatibility
- First productive version
# checkout master branch
$ git checkout master && git pull
# add new version
$ echo "v1.1.0" > VERSION
# Change changelog
$ vi CHANGELOG.md
# Push new version
$ git add CHANGELOG.md VERSION && git commit -m "Add version $(cat VERSION)" && git push
# Tag and push new version
$ git tag -a "$(cat VERSION)" -m "Version $(cat VERSION)" && git push origin "$(cat VERSION)"