Add reference to this package, so that you can log according to the company specifications.
If you are a contributor, please follow the steps below to enable git hooks used by this project:
- Run
make config_git_hooksto set thegit hooksfolder to project's git hook folder.
This project expects that the commit message needs to comply with semantic version commit message conventions. So it is expected that your commit messages follows the conventions described in Semantic Version Tools Repo.
To do so, commit-msg hook will enforce this convention.
It is impotant to follow this convention as we use it to generate the version of the package based on semantic version standards: v.major.minor.patch according to the semantic version commit message, this enables any commit to be eligible for generating a new version of the package.
- Make sure you are in
main branch - Make sure your last commit message describes and indicates the expected semantics for the version to be generated.
- Run
make new_version
You need to create the first version:
- Run
git tag -a v0.0.1 -m "first version" - Run
git push origin --tags v0.0.1
This steps will make this version available for the users.