From ef99951f74ce8413a97e67bdb882d721e1cca6d4 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Fri, 30 Jun 2023 09:26:14 -0400 Subject: [PATCH] Emmental 3.0.5 Signed-off-by: Anna Schumaker --- emmental/__init__.py | 2 +- tests/test_emmental.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/emmental/__init__.py b/emmental/__init__.py index 2853a41..b82bf2e 100644 --- a/emmental/__init__.py +++ b/emmental/__init__.py @@ -21,7 +21,7 @@ from gi.repository import Adw MAJOR_VERSION = 3 MINOR_VERSION = 0 -MICRO_VERSION = 4 +MICRO_VERSION = 5 VERSION_NUMBER = f"{MAJOR_VERSION}.{MINOR_VERSION}.{MICRO_VERSION}" VERSION_STRING = f"Emmental {VERSION_NUMBER}{gsetup.DEBUG_STR}" diff --git a/tests/test_emmental.py b/tests/test_emmental.py index 81f72b7..5aea7c6 100644 --- a/tests/test_emmental.py +++ b/tests/test_emmental.py @@ -22,9 +22,9 @@ class TestEmmental(unittest.TestCase): """Check that version constants have been set properly.""" self.assertEqual(emmental.MAJOR_VERSION, 3) self.assertEqual(emmental.MINOR_VERSION, 0) - self.assertEqual(emmental.MICRO_VERSION, 4) - self.assertEqual(emmental.VERSION_NUMBER, "3.0.4") - self.assertEqual(emmental.VERSION_STRING, "Emmental 3.0.4-debug") + self.assertEqual(emmental.MICRO_VERSION, 5) + self.assertEqual(emmental.VERSION_NUMBER, "3.0.5") + self.assertEqual(emmental.VERSION_STRING, "Emmental 3.0.5-debug") def test_application(self): """Check that the application instance is initialized properly.""" @@ -63,7 +63,7 @@ class TestEmmental(unittest.TestCase): mock_startup.assert_called() mock_load.assert_called() mock_add_window.assert_called_with(self.application.win) - mock_set_useragent.assert_called_with("emmental-debug", "3.0.4") + mock_set_useragent.assert_called_with("emmental-debug", "3.0.5") @unittest.mock.patch("sys.stdout") @unittest.mock.patch("gi.repository.Adw.Application.add_window")