aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog23
-rw-r--r--URPM.pm2
-rw-r--r--perl-URPM.spec5
3 files changed, 28 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d49495..81f010d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+2006-03-06 14:48 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * t/rpmdb.t: Perform this test faster
+
+2006-03-06 14:45 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * t/parse.t: Be more Test::More-ish, add a TODO test
+
+2006-03-06 14:31 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * URPM.xs: It wasn't a good idea to completely remove the refcount,
+ because it's used to free the underlying C glue structure. Also,
+ and rpmtsLink was misplaced.
+
+2006-03-06 12:09 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * URPM.xs: Don't use our own reference counter, but the rpmlib's,
+ for transactions.
+
+2006-03-03 16:48 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
+
+ * URPM.pm, perl-URPM.spec: 1.37
+
2006-03-03 16:08 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com>
* URPM.pm: Document URPM::verify_signature()
diff --git a/URPM.pm b/URPM.pm
index 54c6a26..446c501 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -10,7 +10,7 @@ use URPM::Resolve;
use URPM::Signature;
our @ISA = qw(DynaLoader);
-our $VERSION = '1.37';
+our $VERSION = '1.38';
URPM->bootstrap($VERSION);
diff --git a/perl-URPM.spec b/perl-URPM.spec
index ece0aa1..af2e6c9 100644
--- a/perl-URPM.spec
+++ b/perl-URPM.spec
@@ -5,7 +5,7 @@
%define name perl-URPM
%define real_name URPM
-%define version 1.37
+%define version 1.38
%define release %mkrel 1
%define group %(perl -e 'printf "%%s\\n", "%_vendor" =~ /\\bmandr/i ? "Development/Perl" : "Applications/CPAN"')
@@ -62,6 +62,9 @@ hdlist files and manage them in memory.
%{compat_perl_vendorarch}/auto/URPM/URPM.so
%changelog
+* Mon Mar 06 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.38-
+- Fix deallocation of rpm transactions
+
* Fri Mar 03 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.37-1mdk
- Rewrite verify_rpm(), which wasn't working with recent rpms
(note incompatible API change)