diff --git a/buildrpm/python-drgn-tools.spec b/buildrpm/python-drgn-tools.spec index 732b974..e9290c9 100644 --- a/buildrpm/python-drgn-tools.spec +++ b/buildrpm/python-drgn-tools.spec @@ -1,7 +1,7 @@ # Copyright (c) 2024, Oracle and/or its affiliates. # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/ Name: python-drgn-tools -Version: 1.1.0 +Version: 1.1.1 Release: 1%{?dist} Summary: Helper scripts for drgn, containing the corelens utility @@ -60,6 +60,13 @@ rm %{buildroot}/usr/bin/DRGN %{_mandir}/man1/corelens.1.gz %changelog +* Wed Oct 30 2024 Stephen Brennan - 1.1.1-1 +- Fix crash for NULL mutex owner in corelens "lock" module [Orabug: 37186686] +- Fix crash for NULL hc.uuid in dm helper [Orabug: 37170994] +- Handle circular freelists in slabinfo [Orabug: 37170864] +- Fix missing drgn dependency for OL8 [Orabug: 37126783] +- Add support for drgn 0.0.29 + * Tue Aug 27 2024 Stephen Brennan - 1.1.0-1 - Update to 1.1.0 diff --git a/setup.py b/setup.py index 573518a..36a85fc 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ long_description = "drgn helper script repository" -RELEASE_VERSION = "1.1.0" +RELEASE_VERSION = "1.1.1" PACKAGES = ["drgn_tools"] if not os.environ.get("DRGN_TOOLS_V2_OMIT"): PACKAGES.append("drgn_tools.v2")