Bez popisu

.bumpversion.cfg 674B

12345678910111213141516171819202122232425262728293031
  1. [bumpversion]
  2. current_version = 2.5.0-beta.1
  3. commit = True
  4. tag = True
  5. parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>.*)-(?P<build>\d+))?
  6. serialize =
  7. {major}.{minor}.{patch}-{release}-{build}
  8. {major}.{minor}.{patch}
  9. [bumpversion:part:release_name]
  10. first_value = regular
  11. optional_value = regular
  12. values =
  13. alpha
  14. beta
  15. rc
  16. test
  17. regular
  18. [bumpversion:file:source/app/configuration.py]
  19. search = IRIS_VERSION = "v{current_version}"
  20. replace = IRIS_VERSION = "v{new_version}"
  21. [bumpversion:file:README.md]
  22. search = v{current_version}
  23. replace = v{new_version}
  24. [bumpversion:file:docker-compose.yml]
  25. search = -v{current_version}
  26. replace = -v{new_version}