.versionrc.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "header": "# Changelog\n\nAll notable changes to Flowsint will be documented in this file.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n",
  3. "types": [
  4. {
  5. "type": "feat",
  6. "section": "Features"
  7. },
  8. {
  9. "type": "fix",
  10. "section": "Bug Fixes"
  11. },
  12. {
  13. "type": "perf",
  14. "section": "Performance Improvements"
  15. },
  16. {
  17. "type": "refactor",
  18. "section": "Code Refactoring",
  19. "hidden": false
  20. },
  21. {
  22. "type": "docs",
  23. "section": "Documentation",
  24. "hidden": false
  25. },
  26. {
  27. "type": "style",
  28. "hidden": true
  29. },
  30. {
  31. "type": "chore",
  32. "hidden": true
  33. },
  34. {
  35. "type": "test",
  36. "hidden": true
  37. },
  38. {
  39. "type": "build",
  40. "section": "Build System",
  41. "hidden": false
  42. },
  43. {
  44. "type": "ci",
  45. "hidden": true
  46. }
  47. ],
  48. "packageFiles": [
  49. {
  50. "filename": "flowsint-app/package.json",
  51. "type": "json"
  52. }
  53. ],
  54. "bumpFiles": [
  55. {
  56. "filename": "flowsint-app/package.json",
  57. "type": "json"
  58. },
  59. {
  60. "filename": "pyproject.toml",
  61. "updater": "scripts/pyproject-updater.js"
  62. }
  63. ],
  64. "scripts": {
  65. "postbump": "node scripts/sync-versions.js $(node -p \"require('./flowsint-app/package.json').version\")"
  66. }
  67. }