From 77dc09ea0170264ddf73a0ef5ce55a962c9a7dce Mon Sep 17 00:00:00 2001 From: Xavier Delaruelle Date: Mon, 8 Jun 2020 08:41:55 +0200 Subject: [PATCH] doc: state code must comply with Tcl8.4+ in CONTRIBUTING --- CONTRIBUTING.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 3b57dd0f..d24eb589 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -54,6 +54,8 @@ Start coding * Create a branch to identify the issue or feature you would like to work on * Using your favorite editor, make your changes, `committing as you go`_. * Comply to the `coding conventions of this project `_. +* Your Tcl code has to be compatible with Tcl version 8.4 and above (see + `Tcl 8.4 commands reference`_) * Include tests that cover any code changes you make. Make sure the test fails without your patch. * `Run the tests `_ and `verify coverage `_. @@ -61,6 +63,7 @@ Start coding .. _committing as you go: https://dont-be-afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes .. _create a pull request: https://help.github.com/articles/creating-a-pull-request/ +.. _Tcl 8.4 commands reference: https://www.tcl.tk/man/tcl8.4/TclCmd/contents.htm .. _running-the-tests: