diff options
author | David Robillard <d@drobilla.net> | 2012-09-09 07:25:21 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-09-09 07:25:21 +0000 |
commit | babb2cb630bcd3a80ba3498ba23631c5002ed149 (patch) | |
tree | 867e27f2606c2b555b71d591d1880e3d14a5c0a8 | |
parent | 27669aa3711492830fbe978d59971052b8d0c681 (diff) | |
download | sratom-babb2cb630bcd3a80ba3498ba23631c5002ed149.tar.gz sratom-babb2cb630bcd3a80ba3498ba23631c5002ed149.tar.bz2 sratom-babb2cb630bcd3a80ba3498ba23631c5002ed149.zip |
Disable timestamps in HTML documentation for reproducible build (fix #856).
git-svn-id: http://svn.drobilla.net/lad/trunk/sratom@4765 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | doc/reference.doxygen.in | 2 | ||||
-rw-r--r-- | wscript | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +sratom (0.4.1) unstable; + + * Disable timestamps in HTML documentation for reproducible build + + -- David Robillard <d@drobilla.net> Sun, 09 Sep 2012 03:19:01 -0400 + sratom (0.4.0) stable; * Correctly read objects with several rdf:type properties diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in index ace4c90..c9e6ded 100644 --- a/doc/reference.doxygen.in +++ b/doc/reference.doxygen.in @@ -939,7 +939,7 @@ HTML_COLORSTYLE_GAMMA = 80 # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. -HTML_TIMESTAMP = YES +HTML_TIMESTAMP = NO # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the @@ -6,7 +6,7 @@ from waflib.extras import autowaf as autowaf import waflib.Options as Options # Version of this package (even if built as a child) -SRATOM_VERSION = '0.4.0' +SRATOM_VERSION = '0.4.1' SRATOM_MAJOR_VERSION = '0' # Library version (UNIX style major, minor, micro) |