summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-08-05 16:51:15 -0700
committerDavid Lord <davidism@gmail.com>2021-08-05 16:51:15 -0700
commitdbd10624fd81257e83178ba94abc75e3c4975d00 (patch)
treeeb1f3f3d88e7956fe3d00ec270b3b26e9e67ebff
parentcce3c69633dbfe9d8c277372b36e5d5e682c1611 (diff)
parent469f04c462fb310ceb30c84cecd341cbd677da5f (diff)
downloadmarkupsafe-dbd10624fd81257e83178ba94abc75e3c4975d00.tar.gz
Merge remote-tracking branch 'origin/2.0.x'
-rw-r--r--CHANGES.rst2
-rw-r--r--CONTRIBUTING.rst10
2 files changed, 9 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index e15be20..3f98624 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -52,7 +52,7 @@ Released 2018-11-05
- Build wheels for Linux, Mac, and Windows, allowing systems without
a compiler to take advantage of the C extension speedups. :pr:`104`
- Use newer CPython API on Python 3, resulting in a 1.5x speedup.
- :pr`64`
+ :pr:`64`
- ``escape`` wraps ``__html__`` result in ``Markup``, consistent with
documented behavior. :pr:`69`
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index c58ad8c..5c999c6 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -92,7 +92,7 @@ First time setup
.. code-block:: text
- git remote add fork https://github.com/{username}/markupsafe
+ $ git remote add fork https://github.com/{username}/markupsafe
- Create a virtualenv.
@@ -107,6 +107,12 @@ First time setup
> env\Scripts\activate
+- Upgrade pip and setuptools.
+
+ .. code-block:: text
+
+ $ python -m pip install --upgrade pip setuptools
+
- Install the development dependencies, then install MarkupSafe in
editable mode.
@@ -138,7 +144,7 @@ Start coding
.. code-block:: text
$ git fetch origin
- $ git checkout -b your-branch-name origin/1.0.x
+ $ git checkout -b your-branch-name origin/2.0.x
If you're submitting a feature addition or change, branch off of the
"main" branch.