From 3f42b94689a220014a8c3342b0faa2a89912b234 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Mon, 18 Jul 2022 15:30:48 -0400 Subject: [PATCH] Bump version to 0.3 Resolves #10. --- .github/workflows/python-package.yml | 2 +- README.md | 4 ++++ setup.py | 6 ++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index d3fbb36..8360dd1 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, pypy-3.6, pypy-3.7] + python-version: [3.7, 3.8, 3.9, 3.10, pypy-3.6, pypy-3.7] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/README.md b/README.md index edfe2b2..5c2318e 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,10 @@ defined in `LICENSE`. ## Change Log +### Version 0.3 (2022/07/18) + +Update dependencies. + ### Version 0.2 (2018/03/09) Ignore mentions/issues/commits within Markdown links. diff --git a/setup.py b/setup.py index df971b8..e82853d 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ name='mdx_gh_links', description='An extension to Python-Markdown which adds support for ' 'shorthand links to GitHub users, repositories, issues and commits.', - version='0.2', + version='0.3', author='Waylan Limberg', author_email='waylan.limberg@icloud.com', url='https://github.com/Python-Markdown/github-links/', @@ -51,12 +51,10 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - '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 :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Documentation',