changelog.rst 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .. _changelog:
  2. =========
  3. Changelog
  4. =========
  5. Version 0.2
  6. ===========
  7. Version 0.2.4 (unreleased)
  8. --------------------------
  9. * Skip file existence check for the :file:`.` directory. This fixes an issue if the configuration or source directory is in the local path but reported as missing, because ``git cat-file -e`` always reports an error in that case. (`#12 <issue12_>`_)
  10. * Fix file existence check not working on Windows. (`#18 <issue18_>`_, `#19 <issue19_>`_)
  11. * Fix bug in the sphinx extension which tried to load the `conf.py` from the source directory instead of the conf directory. This could lead to problems when the two directories differ. (`#11 <issue11_>`_, `#13 <issue13_>`_)
  12. * Fix wrong import in :file:`__main__.py` that prevented invocation using ``python -m sphinx_multiversion``. (`#23 <issue23_>`_)
  13. Version 0.2.3
  14. -------------
  15. * Fixed return codes of main() function and exit with non-zero status if no matching refs were found.
  16. * Added some logging calls to the git module.
  17. * Fixed bug where local branch was used to check the existence of files on remote branches.
  18. Version 0.2.2
  19. -------------
  20. * Added additional checks to determine if a branch or tag contains both the Sphinx source directory and the :file:`conf.py` file. If that's not the case, that branch or tag is skipped automatically and not copied to the temporary directory. (`#9 <issue9_>`_)
  21. Version 0.2.1
  22. -------------
  23. * Fixed handling of absolute output paths in `vpathto` and ensure that all generated paths are relative.
  24. Version 0.2.0
  25. -------------
  26. * Added a way to override config variables using placeholders that expand to each version's actual value (`#4 <issue4_>`_, `#7 <issue7_>`_).
  27. Version 0.1
  28. ===========
  29. Version 0.1.1
  30. -------------
  31. * Fixed version number in documentation
  32. * Fixed issue that caused the wrong configuration directory being used when the ``-c`` argument was not specified on the command line
  33. Version 0.1.0
  34. -------------
  35. * Initial release
  36. .. _issue4: https://github.com/Holzhaus/sphinx-multiversion/issues/4
  37. .. _issue7: https://github.com/Holzhaus/sphinx-multiversion/issues/7
  38. .. _issue9: https://github.com/Holzhaus/sphinx-multiversion/issues/9
  39. .. _issue11: https://github.com/Holzhaus/sphinx-multiversion/issues/11
  40. .. _issue12: https://github.com/Holzhaus/sphinx-multiversion/issues/12
  41. .. _issue13: https://github.com/Holzhaus/sphinx-multiversion/issues/13
  42. .. _issue18: https://github.com/Holzhaus/sphinx-multiversion/issues/18
  43. .. _issue19: https://github.com/Holzhaus/sphinx-multiversion/issues/19
  44. .. _issue23: https://github.com/Holzhaus/sphinx-multiversion/issues/23