|
Revision 377, 474 bytes
(checked in by mgalloy, 5 years ago)
|
|
Commit for 3.0b4 release; fixed up srcdist target for external projects.
|
| Line | |
|---|
| 1 | ; docformat = 'rst' |
|---|
| 2 | |
|---|
| 3 | ;+ |
|---|
| 4 | ; Returns IDLdoc version. This file is automatically edited by the build process |
|---|
| 5 | ; to edit the contents of the version and revision variables below. |
|---|
| 6 | ; |
|---|
| 7 | ; :Returns: string |
|---|
| 8 | ; :Keywords: |
|---|
| 9 | ; full : in, optional, type=boolean |
|---|
| 10 | ; set to return Subversion revision as well |
|---|
| 11 | ;- |
|---|
| 12 | function idldoc_version, full=full |
|---|
| 13 | compile_opt strictarr |
|---|
| 14 | |
|---|
| 15 | version = '3.0b4' |
|---|
| 16 | revision = '-r376' |
|---|
| 17 | |
|---|
| 18 | return, version + (keyword_set(full) ? (' ' + revision) : '') |
|---|
| 19 | end |
|---|