Changelog 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. # Version 0.6.4 (2020-07-18)
  2. * python:
  3. * do not automatically upgrade the packages installed in the
  4. virtualenv
  5. # Version 0.6.3 (2020-07-14)
  6. * python:
  7. * finally fix the recursive virtualenv handling
  8. # Version 0.6.2 (2020-07-14)
  9. * python:
  10. * fix recursive virtualenv handling
  11. # Version 0.6.1 (2020-07-13)
  12. * python:
  13. * detect an active virtual environment and avoid entering
  14. it again
  15. # Version 0.6.0 (2020-07-13)
  16. * python:
  17. * add optional VIRTUALENV_PREDEPENDENCIES variable for
  18. emitting helpful warnings in case of missing build
  19. pre-dependencies
  20. # Version 0.5.5 (2020-06-24)
  21. * release:
  22. * add support for Makefile located in a subdirectory of
  23. a git repository
  24. # Version 0.5.4 (2020-01-09)
  25. * release:
  26. * avoid warning in case of empty BUMP_VERSION_COMMIT_FILES
  27. * handle more than three version number parts gracefully
  28. * download-ondemand:
  29. * do not hide wget error messages
  30. * makefile:
  31. * avoid accessing undefined variables
  32. * python:
  33. * fix coverage report visualization
  34. # Version 0.5.3 (2019-03-16)
  35. * release:
  36. * specify PROJECT_NAME for directory name in release tarball
  37. # Version 0.5.2 (2019-03-12)
  38. * deb:
  39. * allow override of dput call in `deb-upload` target with
  40. DEB_UPLOAD_COMMAND variable
  41. # Version 0.5.1 (2019-02-26)
  42. * fix virtualenv-related dependencies (e.g. for tests)
  43. # Version 0.5.0 (2019-02-25)
  44. * new component "python-django"
  45. * execute django-related check in "virtualenv-check" only for django projects
  46. # Version 0.4.0 (2019-02-25)
  47. * download-ondemand:
  48. * fix portability issue for *BSD
  49. * new component "python-virtualenv"
  50. * python:
  51. * "clean" depends on "clean-python"
  52. * allow disabling of tests explicitly via DISABLE_PYTHON_TESTS=1
  53. # Version 0.3.0 (2019-02-10)
  54. * deb:
  55. * suppress error messages in case of optional missing executables
  56. (e.g. dpkg-architecture)
  57. * allow arguments for lintian (see LINTIAN_ARGS)
  58. * release:
  59. * allow the filename of the bumpversion configuration to be overridden
  60. (BUMP_VERSION_CONFIG)
  61. * explicitly collect the list of files to be committed during
  62. "make release-*" (see BUMP_VERSION_FILES)
  63. * allow "BUMP_VERSION_FILES" to be overridden
  64. * fail if a file listed in "BUMP_VERSION_FILES" is missing
  65. * add "release-tar" and "release-tar-sign" targets
  66. * python:
  67. * fix execution of coverage within a virtualenv
  68. (missing python3-coverage)
  69. * allow override of test execution within a coverage run
  70. (via PYTHON_TEST_ARGS)
  71. * automatically run unittests
  72. (finishing without errors if no tests are found)
  73. * open the coverage report in a browser
  74. (only within a desktop session and if "xdg-open" is available)
  75. * fix dependency of "lint-python"
  76. (now attached to "lint" instead of "test")
  77. * new component "generic":
  78. * generate "tags" file via "ctags"
  79. * shell:
  80. * hide the shellcheck command
  81. (reducing noise in case of long lists of files)
  82. # Version 0.2.10 (2018-12-11)
  83. * release:
  84. * fix broken handling of "make release-undo" (introduced in 0.2.9)
  85. # Version 0.2.9 (2017-12-21)
  86. * release:
  87. * handle missing file ".bumpversion" gracefully
  88. * improved error message if VERSION file is missing
  89. # Version 0.2.8 (2017-11-19)
  90. * pypi2deb:
  91. * allow package-specific environment settings
  92. * improve failure detection
  93. * release: prevent successive (accidental) release commits
  94. * populate "Suggests" of deb package
  95. * documentation fixes
  96. # Version 0.2.7 (2017-08-27)
  97. * fixed recently introduced 'clean' operation
  98. # Version 0.2.6 (2017-08-27)
  99. * remove downloaded makefilet directory during 'clean'
  100. # Version 0.2.5 (2017-05-10)
  101. * fix 'install-python' due to bad 'DESTDIR' handling
  102. # Version 0.2.4 (2017-05-09)
  103. * fix path handling of 'check-dput-config' target for 'upload-deb'
  104. # Version 0.2.3 (2017-05-06)
  105. * tolerate errors in 'clean' targets
  106. * hide misleading error message for missing 'dh_listpackages' (from 'debhelper')
  107. # Version 0.2.2 (2017-05-02)
  108. * allow configurable parameters for 'install-python'
  109. * introduce the new target 'lint' for style checks
  110. * move 'flake8' check from 'test-python' to 'lint-python'
  111. # Version 0.2.1 (2017-04-29)
  112. * add minimal makefile snippet for 'download on-demand' integration into projects
  113. # Version 0.2 (2017-04-29)
  114. * calling 'flake8' on more platforms properly
  115. * deb packaging:
  116. * add 'init-deb' target (calls 'dh_make')
  117. * add deb packaging information for makefile itself (#2)
  118. * add 'test-deb' for lintian tests
  119. * allow quilt-based source format for repositories without submodules
  120. # Version 0.1 (2017-04-24)
  121. * Initial release
  122. * basic support for deb packaging, python, bumpversion, pypi2deb and shell scripts