RELEASE.md
Upon releasing a new version there's some checks and updates to be made:
git add . && git reset --hard && git checkout masterhttps://github.com/larastan/larastan/compare/{latest_version}...master
and update the changelog file with the modifications on this release
Note: make sure that there are no breaking changes and you may use
git tag --listto check the latest release
CHANGELOG.md with the message: git commit -m "docs: bumps version to {new_version}"git pushgit tag {new_version}git push --tags