Our current way of deploying is pushing to dev and then getting people to update their commit hashes, which is not ideal.
Instead, we should have a development branch, and a main branch. We push to development during a work-cycle, and once it is ready for release, we push to main with a bumped version.
Right now, I would consider the project to be in 0.1.x, but since we haven't used semver since the start, I'm unsure of what the exact version would be.
Our current way of deploying is pushing to
dev
and then getting people to update their commit hashes, which is not ideal.Instead, we should have a
development
branch, and amain
branch. We push todevelopment
during a work-cycle, and once it is ready for release, we push tomain
with a bumped version.Right now, I would consider the project to be in 0.1.x, but since we haven't used semver since the start, I'm unsure of what the exact version would be.