~spacexplorer/+junk/myenv

« back to all changes in this revision

Viewing changes to vim/vim/ftplugin/latex-suite/version.vim

  • Committer: Kim Allamandola
  • Date: 2011-05-02 05:39:17 UTC
  • Revision ID: spacexplorer@gmail.com-20110502053917-x0yl2lr9ri4yskr2
InitĀ import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
" Tex_Version: returns a string which gives the current version number of latex-suite
 
2
" Description: 
 
3
"       Each time a bug fix/addition is done in any source file in latex-suite,
 
4
"       not just this file, the number below has to be incremented by the author.
 
5
"       This will ensure that there is a single 'global' version number for all of
 
6
"       latex-suite.
 
7
"
 
8
"       If a change is done in the doc/ directory, i.e an addition/change in the
 
9
"       documentation, then this number should NOT be incremented.
 
10
"
 
11
"       Latex-suite will follow a 3-tier system of versioning just as Vim. A
 
12
"       version number will be of the form:
 
13
"               
 
14
"               X.Y.ZZ
 
15
"
 
16
"       'X'     will only be incremented for a major over-haul or feature addition.
 
17
"       'Y'     will be incremented for significant changes which do not qualify
 
18
"                       as major.
 
19
"       'ZZ'    will be incremented for bug-fixes and very trivial additions such
 
20
"                       as adding an option etc. Once ZZ reaches 50, then Y will be
 
21
"                       incremented and ZZ will be reset to 01. Each time we have a
 
22
"                       version number of the form X.Y.01, then we'll make a release on
 
23
"                       vim.sf.net and also create a cvs tag at that point. We'll try to
 
24
"                       "stabilize" that version by releasing a few pre-releases and then
 
25
"                       keep that as a stable point.
 
26
function! Tex_Version()
 
27
        return "Latex-Suite: version 1.8.13"
 
28
endfunction 
 
29
 
 
30
com! -nargs=0 TVersion echo Tex_Version()