Skip to content

Releases: timvink/mkdocs-git-revision-date-localized-plugin

revision-date-localized v0.8

05 Dec 19:52
Compare
Choose a tag to compare

Added

  • exclude parameter to prevent adding a revision date to certain pages #43

Improved

  • blackended code
  • added flake8 and fixed corresponding issues
  • improved type hinting and docstrings

Thanks @RDIL for your contributions in this release! 🎉

revision-date-localized v0.7.4

01 Dec 12:34
Compare
Choose a tag to compare

Changed

  • Upgraded timeago.js dependency from 2.x to 4.0.2 (#44)

revision-date-localized v0.7.3

26 Oct 15:00
Compare
Choose a tag to compare

Changed

  • timeago.js dependencies are now injected from the package, removing the need to use a CDN. Closes #39, #40 and #42

revision-date-localized v0.7.2

17 Sep 07:28
Compare
Choose a tag to compare

Added

  • Support for symlinks #41, thanks @AndreasBieber 🎉 , also closes #34
  • Updated README.md to explain how to add revision date to default mkdocs theme 837c661

Changed

  • Improve logging output to be consistent with mkdocs 84d3bbc

revision-date-localized v0.7.1

13 Sep 19:17
Compare
Choose a tag to compare

Fixed

revision-date-localized v0.7

07 Jul 16:58
Compare
Choose a tag to compare

Added

  • Extended warnings when running on build servers to Azure and Bitbucket pipelines.
  • Added <span> elements around date output to allow for easy CSS styling

Fixed

  • Printing pages with type: timeago would result in blank output for the date. Now proper fallback to type: iso_date #12

revision-date-localized v0.6

30 Jun 13:50
08e535b
Compare
Choose a tag to compare

Added

  • Add support for timezones #35

Fixed

  • fallback_to_build_date was not always throwing proper warnings

Changed

  • Bumped dependency on mkdocs to >=1.0
  • Dropped dependency on jinja2
  • Improved various error messages and README.md
  • Extended unit tests

revision-date-localized v0.5.2

06 May 15:01
Compare
Choose a tag to compare

Fix, did not release all commits intended in v0.5.1

revision-date-localized v0.5.1

06 May 14:31
Compare
Choose a tag to compare

🎉 Thanks to all contributors to this release @biochimia @oxr463 @marianafantini @williammizuta

Fixed

  • Clarified fallback_to_build_date in error messages #26 (by @biochimia )

Added

  • Unit tests now also run for Python 3.5 and 3.6 #32
  • License file #25 (by @oxr463)

Improved

  • Directly use time.time() to obtain unix timestamp #27 (by @biochimia )
  • Plugin now starts searching for a .git directory in mkdocs docs_dir, and traverses upward. #31 #33

Fix locale parameter, add fallback_to_build_date option

28 Mar 12:25
Compare
Choose a tag to compare

Big thanks to @Guts for all his work on this release!

Fixed

  • locale did not change date format output #21

Added

  • New option fallback_to_build_date that uses the build date instead of a git date. Useful when git is not available in build environment #20

Improved

  • black-ened code
  • improved and extended unit tests
  • codebase:
    • include logging.debug() statements
    • add some type hinting, improve import orders etc