From 83e82db5daf59f5551ed7b6065a84da5300fecc2 Mon Sep 17 00:00:00 2001 From: jan Date: Sun, 15 Oct 2023 23:10:58 -0700 Subject: [PATCH 1/2] doc typo --- masque/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/library.py b/masque/library.py index 6f36d40..c0d8c93 100644 --- a/masque/library.py +++ b/masque/library.py @@ -1082,7 +1082,7 @@ class LazyLibrary(ILibrary): raise LibraryError( f'Detected multiple simultaneous lookups of "{key}".\n' 'This may be caused by an invalid (cyclical) reference, or buggy code.\n' - 'If you are lazy-loading a file, try a non-lazy load and check for refernce cycles.' # TODO give advice on finding cycles + 'If you are lazy-loading a file, try a non-lazy load and check for reference cycles.' # TODO give advice on finding cycles ) self._lookups_in_progress.add(key) From d6ab8a1f34a46d15d9d56c570a93b59b4112868a Mon Sep 17 00:00:00 2001 From: jan Date: Sun, 15 Oct 2023 23:12:33 -0700 Subject: [PATCH 2/2] Bump version to v3.0. Note that MAJOR BREAKING CHANGES were introduced almost everywhere in this version -- see the readme to understand how everything works now. --- masque/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/__init__.py b/masque/__init__.py index 051af54..3ed2a6f 100644 --- a/masque/__init__.py +++ b/masque/__init__.py @@ -48,5 +48,5 @@ from .utils import ports2data, oneshot __author__ = 'Jan Petykiewicz' -__version__ = '2.7' +__version__ = '3.0' version = __version__ # legacy