Version 0.7.5

No major changes, yet the merge with Fievel's work impacts considerably
the git tree thus a minor version update.
This commit is contained in:
David Beniamine
2016-09-05 15:46:52 +02:00
parent 85c215b4cc
commit c2eb67f1a6
3 changed files with 8 additions and 1 deletions

View File

@@ -28,6 +28,8 @@
## Release notes ## 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 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)), [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 it highlight dates in overdue tasks as an Error. It depends on a

View File

@@ -31,6 +31,11 @@ Table of Contents *TodoTxt-Contents* ~
=============================================================================== ===============================================================================
1. Release notes *TodoTxt-ReleaseNotes* ~ 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 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)), 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 it highlight dates in overdue tasks as an Error. It depends on a

View File

@@ -12,7 +12,7 @@ set cpo&vim
if exists("g:Todo_txt_loaded") if exists("g:Todo_txt_loaded")
finish finish
else else
let g:Todo_txt_loaded=0.7.4 let g:Todo_txt_loaded=0.7.5
endif endif
" General options {{{1 " General options {{{1