Skip to content
Snippets Groups Projects
Commit 46b7dfb5 authored by Edward Betts's avatar Edward Betts
Browse files

Update upstream source from tag 'upstream/1.1.2'

Update to upstream version '1.1.2'
with Debian dir 09492c6519260381eb25f33b4fa163370c38a602
parents 8566a116 7420b16a
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12-dev"
- "3.12"
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
......
name: Sync Github labels
on:
push:
branches:
- main
paths:
- ".github/**"
jobs:
labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install labels
run: pip install labels
- name: Sync config with Github
run: labels -u ${{ github.repository_owner }} -t ${{ secrets.GITHUB_TOKEN }} sync -f .github/labels.toml
......@@ -2,6 +2,12 @@
<!--next-version-placeholder-->
## v1.1.2 (2024-06-24)
### Fix
* Fix license classifier ([#4](https://github.com/bdraco/async_interrupt/issues/4)) ([`f8e3791`](https://github.com/bdraco/async_interrupt/commit/f8e37914c24125ea69690d8bc01ad210a19b8d68))
## v1.1.1 (2023-07-20)
### Fix
......
This diff is collapsed.
[tool.poetry]
name = "async_interrupt"
version = "1.1.1"
version = "1.1.2"
description = "Context manager to raise an exception when a future is done"
authors = ["J. Nick Koston <nick@koston.org>"]
license = "Apache Software License 2.0"
readme = "README.md"
repository = "https://github.com/bdraco/async_interrupt"
classifiers = [
......@@ -12,6 +11,7 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
]
packages = [
{ include = "async_interrupt", from = "src" },
......
......@@ -13,7 +13,7 @@ import asyncio
from types import TracebackType
from typing import TYPE_CHECKING, Any, final
__version__ = "1.1.1"
__version__ = "1.1.2"
__all__ = ("interrupt",)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment