From 487417717478fbfbdfc61a8633e5a4fdbc38ff30 Mon Sep 17 00:00:00 2001 From: Ben Jeffery Date: Mon, 9 Oct 2023 16:40:55 +0100 Subject: [PATCH] Prepare for 0.5.6 release --- c/tests/test_minimal_cpp.cpp | 2 +- python/CHANGELOG.rst | 8 +++++++- python/tests/test_util.py | 2 +- python/tskit/_version.py | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/c/tests/test_minimal_cpp.cpp b/c/tests/test_minimal_cpp.cpp index ea4eee9629..8754f4f636 100644 --- a/c/tests/test_minimal_cpp.cpp +++ b/c/tests/test_minimal_cpp.cpp @@ -1,6 +1,6 @@ /* * MIT License * - * Copyright (c) 2019-2022 Tskit Developers + * Copyright (c) 2019-2023 Tskit Developers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/python/CHANGELOG.rst b/python/CHANGELOG.rst index baad328c4b..7eb8bbe2e0 100644 --- a/python/CHANGELOG.rst +++ b/python/CHANGELOG.rst @@ -1,5 +1,5 @@ -------------------- -[0.5.6] - 2023-XX-XX +[0.5.6] - 2023-10-10 -------------------- **Breaking Changes** @@ -22,6 +22,12 @@ - Add ``asdict`` to all dataclasses. These are returned when you access a row or other tree sequence object. (:user:`benjeffery`, :pr:`2759`, :issue:`2719`) +**Bugfixes** + +- Fix incompatibility with ``jsonschema>4.18.6`` which caused + ``AttributeError: module jsonschema has no attribute _validators`` + (:user:`benjeffery`, :pr:`2844`, :issue:`2840`) + -------------------- [0.5.5] - 2023-05-17 -------------------- diff --git a/python/tests/test_util.py b/python/tests/test_util.py index 1d78dd0a08..eaed4d07e3 100644 --- a/python/tests/test_util.py +++ b/python/tests/test_util.py @@ -1,6 +1,6 @@ # MIT License # -# Copyright (c) 2018-2022 Tskit Developers +# Copyright (c) 2018-2023 Tskit Developers # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/python/tskit/_version.py b/python/tskit/_version.py index d36b46f038..3eb2f53375 100644 --- a/python/tskit/_version.py +++ b/python/tskit/_version.py @@ -1,4 +1,4 @@ # Definitive location for the version number. # During development, should be x.y.z.devN # For beta should be x.y.zbN -tskit_version = "0.5.5" +tskit_version = "0.5.6"