We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b80c6af commit 2d2272fCopy full SHA for 2d2272f
CHANGELOG.md
@@ -1,5 +1,13 @@
1
# Changelog
2
3
+## v2.1.0
4
+
5
+- Add type annotations to all Python source files
6
+- Refactor `remote.py` module namedtuple to Py3.6+ style `NamedTuple` derived class with type annotations
7
+- Transition from pytype to mypy as static type checker
8
+- Add GitHub Action static type check configuration
9
+- Refactor import statements with default `isort` formatting
10
11
## v2.0.2
12
13
- update cffi dependency to bug fix release v1.14.3
lib/fdiff/__init__.py
@@ -1,3 +1,3 @@
#!/usr/bin/env python3
-version = __version__ = "2.0.2"
+version = __version__ = "2.1.0"
0 commit comments