summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/tests.yaml6
-rw-r--r--CHANGES.rst6
-rw-r--r--src/click/__init__.py2
3 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 64268e1..16e8a58 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -34,8 +34,8 @@ jobs:
- {name: 'PyPy', python: 'pypy-3.7', os: ubuntu-latest, tox: pypy37}
- {name: Typing, python: '3.10', os: ubuntu-latest, tox: typing}
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-python@v3
+ - uses: actions/checkout@v3
+ - uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: 'pip'
@@ -46,7 +46,7 @@ jobs:
pip install -U setuptools
python -m pip install -U pip
- name: cache mypy
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: ./.mypy_cache
key: mypy|${{ matrix.python }}|${{ hashFiles('setup.cfg') }}
diff --git a/CHANGES.rst b/CHANGES.rst
index 1766567..3893438 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,5 +1,11 @@
.. currentmodule:: click
+Version 8.2.0
+-------------
+
+Unreleased
+
+
Version 8.1.3
-------------
diff --git a/src/click/__init__.py b/src/click/__init__.py
index e3ef423..a6e9799 100644
--- a/src/click/__init__.py
+++ b/src/click/__init__.py
@@ -70,4 +70,4 @@ from .utils import get_binary_stream as get_binary_stream
from .utils import get_text_stream as get_text_stream
from .utils import open_file as open_file
-__version__ = "8.1.3"
+__version__ = "8.2.0.dev0"