Changelog 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. # Version 0.7.3 (2021-02-22)
  2. * fix detection of outdated makefilet version
  3. # Version 0.7.2 (2021-02-01)
  4. * fix determination of `shellcheck` path
  5. # Version 0.7.1 (2021-01-13)
  6. * fix detection of outdated makefilet version
  7. # Version 0.7.0 (2021-01-09)
  8. * python:
  9. * force removal of old "foo.egg-info/SOURCES.txt" during "clean-python"
  10. This is a workaround for https://github.com/pypa/setuptools/issues/436.
  11. (closes: #33)
  12. * python support (e.g. for venv) may be forced via MAKEFILET_ENABLE_PYTHON=1
  13. (closes: #23)
  14. * pypi2deb:
  15. * allow version specification for packages
  16. (closes: #26)
  17. * allow to run without a local debian/changelog file
  18. (closes: #25)
  19. * release:
  20. * add support for npm-based release
  21. (closes: #21)
  22. * shell:
  23. * do not disable shell-related checks by default
  24. Shell-related testing and linting can be disabled via DISABLE_SHELL_CHECK=1.
  25. * warn if shellcheck is missing
  26. * rename "test-shell" to "lint-shell"
  27. * automatically run jobs in parallel (if "-j X" is not specified)
  28. (closes: #29)
  29. * warn if the currently active version of makefilet is older than the version
  30. requested via MAKEFILET_DOWNLOAD_VERSION
  31. This may happen if makefilet is installed system-wide.
  32. (closes: #27)
  33. # Version 0.6.8 (2020-11-10)
  34. * python:
  35. * do not try to install virtualenv pre-dependencies which
  36. are part of the standard library
  37. # Version 0.6.7 (2020-11-10)
  38. * release:
  39. * tolerate untracked files during release
  40. * python:
  41. * ensure VIRTUALENV_PREDEPENDENCIES being available inside
  42. the virtualenv
  43. # Version 0.6.6 (2020-08-13)
  44. * python:
  45. * fix handling of "DISABLE_PYTHON_TESTS"
  46. # Version 0.6.5 (2020-08-12)
  47. * deb:
  48. * "test-deb" (and thus "test") does not depend on "lint-deb"
  49. anymore
  50. # Version 0.6.4 (2020-07-18)
  51. * python:
  52. * do not automatically upgrade the packages installed in the
  53. virtualenv
  54. # Version 0.6.3 (2020-07-14)
  55. * python:
  56. * finally fix the recursive virtualenv handling
  57. # Version 0.6.2 (2020-07-14)
  58. * python:
  59. * fix recursive virtualenv handling
  60. # Version 0.6.1 (2020-07-13)
  61. * python:
  62. * detect an active virtual environment and avoid entering
  63. it again
  64. # Version 0.6.0 (2020-07-13)
  65. * python:
  66. * add optional VIRTUALENV_PREDEPENDENCIES variable for
  67. emitting helpful warnings in case of missing build
  68. pre-dependencies
  69. # Version 0.5.5 (2020-06-24)
  70. * release:
  71. * add support for Makefile located in a subdirectory of
  72. a git repository
  73. # Version 0.5.4 (2020-01-09)
  74. * release:
  75. * avoid warning in case of empty BUMP_VERSION_COMMIT_FILES
  76. * handle more than three version number parts gracefully
  77. * download-ondemand:
  78. * do not hide wget error messages
  79. * makefile:
  80. * avoid accessing undefined variables
  81. * python:
  82. * fix coverage report visualization
  83. # Version 0.5.3 (2019-03-16)
  84. * release:
  85. * specify PROJECT_NAME for directory name in release tarball
  86. # Version 0.5.2 (2019-03-12)
  87. * deb:
  88. * allow override of dput call in `deb-upload` target with
  89. DEB_UPLOAD_COMMAND variable
  90. # Version 0.5.1 (2019-02-26)
  91. * fix virtualenv-related dependencies (e.g. for tests)
  92. # Version 0.5.0 (2019-02-25)
  93. * new component "python-django"
  94. * execute django-related check in "virtualenv-check" only for django projects
  95. # Version 0.4.0 (2019-02-25)
  96. * download-ondemand:
  97. * fix portability issue for *BSD
  98. * new component "python-virtualenv"
  99. * python:
  100. * "clean" depends on "clean-python"
  101. * allow disabling of tests explicitly via DISABLE_PYTHON_TESTS=1
  102. # Version 0.3.0 (2019-02-10)
  103. * deb:
  104. * suppress error messages in case of optional missing executables
  105. (e.g. dpkg-architecture)
  106. * allow arguments for lintian (see LINTIAN_ARGS)
  107. * release:
  108. * allow the filename of the bumpversion configuration to be overridden
  109. (BUMP_VERSION_CONFIG)
  110. * explicitly collect the list of files to be committed during
  111. "make release-*" (see BUMP_VERSION_FILES)
  112. * allow "BUMP_VERSION_FILES" to be overridden
  113. * fail if a file listed in "BUMP_VERSION_FILES" is missing
  114. * add "release-tar" and "release-tar-sign" targets
  115. * python:
  116. * fix execution of coverage within a virtualenv
  117. (missing python3-coverage)
  118. * allow override of test execution within a coverage run
  119. (via PYTHON_TEST_ARGS)
  120. * automatically run unittests
  121. (finishing without errors if no tests are found)
  122. * open the coverage report in a browser
  123. (only within a desktop session and if "xdg-open" is available)
  124. * fix dependency of "lint-python"
  125. (now attached to "lint" instead of "test")
  126. * new component "generic":
  127. * generate "tags" file via "ctags"
  128. * shell:
  129. * hide the shellcheck command
  130. (reducing noise in case of long lists of files)
  131. # Version 0.2.10 (2018-12-11)
  132. * release:
  133. * fix broken handling of "make release-undo" (introduced in 0.2.9)
  134. # Version 0.2.9 (2017-12-21)
  135. * release:
  136. * handle missing file ".bumpversion" gracefully
  137. * improved error message if VERSION file is missing
  138. # Version 0.2.8 (2017-11-19)
  139. * pypi2deb:
  140. * allow package-specific environment settings
  141. * improve failure detection
  142. * release: prevent successive (accidental) release commits
  143. * populate "Suggests" of deb package
  144. * documentation fixes
  145. # Version 0.2.7 (2017-08-27)
  146. * fixed recently introduced 'clean' operation
  147. # Version 0.2.6 (2017-08-27)
  148. * remove downloaded makefilet directory during 'clean'
  149. # Version 0.2.5 (2017-05-10)
  150. * fix 'install-python' due to bad 'DESTDIR' handling
  151. # Version 0.2.4 (2017-05-09)
  152. * fix path handling of 'check-dput-config' target for 'upload-deb'
  153. # Version 0.2.3 (2017-05-06)
  154. * tolerate errors in 'clean' targets
  155. * hide misleading error message for missing 'dh_listpackages' (from 'debhelper')
  156. # Version 0.2.2 (2017-05-02)
  157. * allow configurable parameters for 'install-python'
  158. * introduce the new target 'lint' for style checks
  159. * move 'flake8' check from 'test-python' to 'lint-python'
  160. # Version 0.2.1 (2017-04-29)
  161. * add minimal makefile snippet for 'download on-demand' integration into projects
  162. # Version 0.2 (2017-04-29)
  163. * calling 'flake8' on more platforms properly
  164. * deb packaging:
  165. * add 'init-deb' target (calls 'dh_make')
  166. * add deb packaging information for makefile itself (#2)
  167. * add 'test-deb' for lintian tests
  168. * allow quilt-based source format for repositories without submodules
  169. # Version 0.1 (2017-04-24)
  170. * Initial release
  171. * basic support for deb packaging, python, bumpversion, pypi2deb and shell scripts