From 511c727a4ea0c7d28a6c2cc9e21232f3b17fe2e0 Mon Sep 17 00:00:00 2001 From: Aric Coady Date: Sun, 28 Jan 2024 13:00:06 -0800 Subject: [PATCH] Release 1.11. --- CHANGELOG.md | 2 ++ multimethod/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05fbbd1..19722fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ## Unreleased + +## [1.11](https://pypi.org/project/multimethod/1.11/) - 2024-01-28 ### Changed * Python >=3.9 required * `isinstance` and generic dispatch optimized diff --git a/multimethod/__init__.py b/multimethod/__init__.py index b5f7de4..440ca66 100644 --- a/multimethod/__init__.py +++ b/multimethod/__init__.py @@ -10,7 +10,7 @@ from collections.abc import Callable, Iterable, Iterator, Mapping from typing import Any, Literal, Optional, TypeVar, Union, get_type_hints, overload as tp_overload -__version__ = '1.10' +__version__ = '1.11' class DispatchError(TypeError):