From ee79fcdfa7e6298febdbc3c44ad8643f15c053f5 Mon Sep 17 00:00:00 2001 From: Stephen Brennan Date: Thu, 19 Dec 2024 10:23:05 -0800 Subject: [PATCH] Release v1.1.2 Signed-off-by: Stephen Brennan --- buildrpm/python-drgn-tools.spec | 7 ++++++- setup.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/buildrpm/python-drgn-tools.spec b/buildrpm/python-drgn-tools.spec index cd2bc11..c02426d 100644 --- a/buildrpm/python-drgn-tools.spec +++ b/buildrpm/python-drgn-tools.spec @@ -20,7 +20,7 @@ Name: python-drgn-tools -Version: 1.1.1 +Version: 1.1.2 Release: 1%{?dist} Summary: Helper scripts for drgn, containing the corelens utility @@ -135,6 +135,11 @@ rm %{buildroot}/usr/bin/DRGN %endif %changelog +* Wed Jan 8 2025 Stephen Brennan - 1.1.2-1 +- Fix crash in inflight-io module [Orabug: 37394100] +- Add support for drgn 0.0.30 [Orabug: 37413891] +- Fix blkdev_ro missing disk driver's read-only status [Orabug: 37454983] + * 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] diff --git a/setup.py b/setup.py index aa1a77c..2652541 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ long_description = "drgn helper script repository" -RELEASE_VERSION = "1.1.1" +RELEASE_VERSION = "1.1.2" PACKAGES = ["drgn_tools"] if not os.environ.get("DRGN_TOOLS_V2_OMIT"): PACKAGES.append("drgn_tools.v2")