diff options
-rw-r--r-- | docs/contributing.rst | 2 | ||||
-rwxr-xr-x | scripts/extract_test_cases.py | 2 | ||||
-rwxr-xr-x | scripts/isolate_tests.py | 2 | ||||
-rwxr-xr-x | scripts/update_bugs_by_version.py | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst index b95cff1a..eabf40b7 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -54,6 +54,8 @@ However, if you are making a larger change, please consult with the `Solidity De <https://gitter.im/ethereum/solidity-dev>`_ (different from the one mentioned above, this on is focused on compiler and language development instead of language use) first. +New features and bugfixes should be added to the ``Changelog.md`` file: please +follow the style of previous entries, when applicable. Finally, please make sure you respect the `coding style <https://raw.githubusercontent.com/ethereum/solidity/develop/CODING_STYLE.md>`_ diff --git a/scripts/extract_test_cases.py b/scripts/extract_test_cases.py index 07ef9a96..47c53f3c 100755 --- a/scripts/extract_test_cases.py +++ b/scripts/extract_test_cases.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python2 # # This script reads C++ or RST source files and writes all # multi-line strings into individual files. diff --git a/scripts/isolate_tests.py b/scripts/isolate_tests.py index 5bf577d3..82dff1e0 100755 --- a/scripts/isolate_tests.py +++ b/scripts/isolate_tests.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python2 # # This script reads C++ or RST source files and writes all # multi-line strings into individual files. diff --git a/scripts/update_bugs_by_version.py b/scripts/update_bugs_by_version.py index cbedf1a5..68ccd72a 100755 --- a/scripts/update_bugs_by_version.py +++ b/scripts/update_bugs_by_version.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # # This script is used to generate the list of bugs per compiler version # from the list of bugs. |