Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/pip/coverage-7.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
prcr authored Dec 6, 2023
2 parents efac57d + 04e1bdd commit e0346f2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-beta.4"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
path: dist/

- name: Deploy to Test PyPI
uses: pypa/gh-action-pypi-publish@v1.8.10
uses: pypa/gh-action-pypi-publish@v1.8.11
with:
repository-url: https://test.pypi.org/legacy/

Expand All @@ -160,7 +160,7 @@ jobs:
path: dist/

- name: Deploy to PyPI
uses: pypa/gh-action-pypi-publish@v1.8.10
uses: pypa/gh-action-pypi-publish@v1.8.11

deploy-gh-pages:
name: Deploy GitHub Pages
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ This file lists all updates to the [mkdocs-meta-descriptions plugin](https://git

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v3.0.0](https://www.github.com/prcr/mkdocs-meta-descriptions-plugin/compare/v2.3.0...v3.0.0) (2023-12-06)

### Removed

- Dropped support for Python 3.7 after [reaching EOL on 2023-06-27](https://devguide.python.org/versions/#unsupported-versions).

### Added

- Added support for [Python 3.12](https://www.python.org/downloads/release/python-3120/).

## [v2.3.0](https://www.github.com/prcr/mkdocs-meta-descriptions-plugin/compare/v2.2.0...v2.3.0) (2023-07-31)

### Added
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="mkdocs-meta-descriptions-plugin",
version="0.0.1",
#version="0.0.1",
description="Generate meta descriptions from the first paragraphs in your MkDocs pages",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
Expand All @@ -30,11 +30,11 @@
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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.11",
"Programming Language :: Python :: 3.12"
],
packages=["mkdocs_meta_descriptions_plugin"],
entry_points={
Expand Down

0 comments on commit e0346f2

Please sign in to comment.