build.properties 2.2 KB

123456789101112131415161718192021222324252627
  1. ##################################################################################################
  2. ## TLDR - versioning goes as following <major>.<minor>[type[revision]] ##
  3. ##################################################################################################
  4. ## Note versioning system is using sequence identifiers, thus major versions will have two or ##
  5. ### three digits with no letters and numbers after them. ##
  6. ## Development versions may have upto three digits with string and number after said string ##
  7. ### "a" - alpha, "b" - beta, "rc" - release candidate. ##
  8. ## Number after letter indicates minor bugfixing patch done to said major release, jumping of ##
  9. ### minor versions and bugfixing numbers is allowed if amount of patches ##
  10. ## is not big enough for major release (or minor release) but too big to be called single ##
  11. ### minor version (bugfix release). ##
  12. ## Release Candidate versions should be only assigned to stable BETA versions that have small ##
  13. ### amount of bugs and fully working features of project, same applies for going from ##
  14. #### alpha to beta. ##
  15. ##################################################################################################
  16. ## Please try to keep switching between release types without any actual changes ##
  17. ### (so say if 1.0a3 appears to be stable enough make empty commit that only ##
  18. #### changes this file string "lootgames.version=v1.0a3" to "lootgames.version=v1.0b1" ##
  19. ##################################################################################################
  20. ## For more info on versioning intended to be used please read up on https://goo.gl/UVs6VX ##
  21. ##################################################################################################
  22. minecraft.version=1.7.10
  23. forge.version=10.13.4.1614
  24. lootgames.version=v0.1a1
  25. ##################################################################################################