Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 404 Bytes

Versioning.md

File metadata and controls

20 lines (14 loc) · 404 Bytes

Versioning

How does Pomdog versioning work?

Pomdog follows semver. To bump the version of the engine, follow the following steps:

  1. Edit source code

    vim include/Pomdog/Basic/Version.hpp
    git add include/Pomdog/Basic/Version.hpp
    git commit -m "Bump version to 0.1.3"
  2. Tagging

    git tag v0.1.3
    git push origin v0.1.3