Add release notes and doc updates for pydiffx 1.1.1.

Review Request #13096 — Created June 5, 2023 and updated

Information

DiffX
pydiffx/release-1.x

Reviewers

This updates the documentation to list Python 3.12 in the compatibility
list, and adds release notes for the 1.1.1 release.

Built the docs. Checked for build errors and spelling errors.

Summary ID
Add release notes and doc updates for pydiffx 1.1.1.
This updates the documentation to list Python 3.12 in the compatibility list, and adds release notes for the 1.1.1 release.
79389b9ce2c11ac2afb61d5a33a0b782f80d727a
Description From Last Updated

Mind also adding this to the versions/classifiers in setup.py?

daviddavid
Checks run (2 succeeded)
flake8 passed.
JSHint passed.
david
  1. 
      
  2. docs/pydiffx/index.rst (Diff revision 1)
     
     

    Mind also adding this to the versions/classifiers in setup.py?

    1. It's already in there:

            python_requires=','.join([
                '>=2.7',
                '!=3.0.*',
                '!=3.1.*',
                '!=3.2.*',
                '!=3.3.*',
                '!=3.4.*',
                '!=3.5.*',
            ]),
            classifiers=[
                ...
                'Programming Language :: Python',
                'Programming Language :: Python :: 2',
                'Programming Language :: Python :: 2.7',
                'Programming Language :: Python :: 3',
                'Programming Language :: Python :: 3.6',
                'Programming Language :: Python :: 3.7',
                'Programming Language :: Python :: 3.8',
                'Programming Language :: Python :: 3.9',
                'Programming Language :: Python :: 3.10',
                'Programming Language :: Python :: 3.11',
                'Programming Language :: Python :: 3.12',
                ...
            ]
      
  3. 
      
david
  1. Ship It!
  2. 
      
Loading...