diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-02 15:50:22 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-02 15:50:22 +0300 |
commit | 90c1d54464498237912476d1f02b55b457575105 (patch) | |
tree | 0f5ee3f9bc26169e775c0bc627a6112e5c65acdb | |
parent | a6af1a1d9c4d84987fd067a39a1c936df9f89420 (diff) | |
download | micropython-90c1d54464498237912476d1f02b55b457575105.tar.gz micropython-90c1d54464498237912476d1f02b55b457575105.zip |
docs/conf.py: Set "version" and "release" to the same value.
We don't use alpha/beta/RC, so for us version and release should be the
same, or it leads to confusion (for example, current, 1.9.1 docs are
marked as 1.9 at places).
-rwxr-xr-x | docs/conf.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py index b9b1125572..2c3423d99b 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -96,10 +96,9 @@ copyright = '2014-2017, Damien P. George, Paul Sokolovsky, and contributors' # |version| and |release|, also used in various other places throughout the # built documents. # -# The short X.Y version. -version = '1.9' -# The full version, including alpha/beta/rc tags. -release = '1.9.1' +# We don't follow "The short X.Y version" vs "The full version, including alpha/beta/rc tags" +# breakdown, so use the same version identifier for both to avoid confusion. +version = release = '1.9.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |