diff --git a/README.markdown b/README.markdown index 9cd8590..5410094 100644 --- a/README.markdown +++ b/README.markdown @@ -28,6 +28,8 @@ ## Release notes +v0.7.5 Incorporates [Fievel's work](https://github.com/fievel/todo.txt-vim/commit/0863e1434e9a89ace06c4856b6cb32ba9906e3de) to make overduedates work on python3. I have no version of vim with python3 thus it is only tested on his side, do not hesitate to report issues. + v0.7.4 includes the overduedate support from Guilherme Victal (see pull [request #45 on freitass version](https://github.com/freitass/todo.txt-vim/pull/45)), it highlight dates in overdue tasks as an Error. It depends on a diff --git a/doc/todo.txt b/doc/todo.txt index ae256b5..c6cfe2b 100644 --- a/doc/todo.txt +++ b/doc/todo.txt @@ -31,6 +31,11 @@ Table of Contents *TodoTxt-Contents* ~ =============================================================================== 1. Release notes *TodoTxt-ReleaseNotes* ~ +v0.7.5 Incorporates Fievel's work +(https://github.com/fievel/todo.txt-vim/commit/0863e1434e9a89ace06c4856b6cb32ba9906e3de) +to make overduedates work on python3. I have no version of vim with python3 +thus it is only tested on his side, do not hesitate to report issues. + v0.7.4 includes the overduedate support from Guilherme Victal (see pull request #45 on freitass version (https://github.com/freitass/todo.txt-vim/pull/45)), it highlight dates in overdue tasks as an Error. It depends on a diff --git a/ftplugin/todo.vim b/ftplugin/todo.vim index 73b5dec..aa05b49 100644 --- a/ftplugin/todo.vim +++ b/ftplugin/todo.vim @@ -12,7 +12,7 @@ set cpo&vim if exists("g:Todo_txt_loaded") finish else - let g:Todo_txt_loaded=0.7.4 + let g:Todo_txt_loaded=0.7.5 endif " General options {{{1