From bd59a77c7c2fd098f081b5f7afcc3183ca97137a Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Thu, 12 Dec 2024 23:31:36 +0100 Subject: [PATCH] Release 1.2.0 (#719) --- .github/workflows/ci.yml | 7 ------- CHANGES.rst | 2 +- janus/__init__.py | 2 +- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08ac94a..e0b8352 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,11 +9,6 @@ on: schedule: - cron: '0 6 * * *' # Daily 6AM UTC build -concurrency: - group: ${{ github.ref }}-${{ github.workflow }} - cancel-in-progress: true - - env: COLOR: >- # Supposedly, pytest or coveragepy use this yes @@ -94,8 +89,6 @@ jobs: pytest --cov=janus --cov=tests --cov-report=term --cov-report=xml:coverage.xml - name: Upload coverage artifact uses: aio-libs/prepare-coverage@v24.9.2 - with: - key: unit-${{ matrix.python-version }} benchmark: name: Benchmark diff --git a/CHANGES.rst b/CHANGES.rst index 7df434a..bc675c9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changes ======= -1.2.0 (2024-12-XX) +1.2.0 (2024-12-12) ------------------ - Optimize internal implementation for a little speedup #699 diff --git a/janus/__init__.py b/janus/__init__.py index cd63ef5..54bf3d5 100644 --- a/janus/__init__.py +++ b/janus/__init__.py @@ -10,7 +10,7 @@ from time import monotonic from typing import Any, Callable, Generic, Optional, Protocol, TypeVar -__version__ = "1.1.0" +__version__ = "1.2.0" __all__ = ( "Queue", "PriorityQueue",