From: Mauro Carvalho Chehab Date: Sun, 10 Aug 2014 14:04:10 +0000 (-0300) Subject: Bump version to 0.5.3 X-Git-Tag: v0.5.3 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=84719f774dc1716fbf4d862847e7fb0b04b5c7c6;p=users%2Fmchehab%2Frasdaemon.git Bump version to 0.5.3 Signed-off-by: Mauro Carvalho Chehab --- diff --git a/ChangeLog b/ChangeLog index a88a7bf..3fa1930 100644 --- a/ChangeLog +++ b/ChangeLog @@ -53,3 +53,9 @@ 2014-04-03 Mauro Carvalho Chehab - Version 0.5.2 * Some fixes for ABRT report support +2014-08-10 Mauro Carvalho Chehab + - Version 0.5.3 + * Add support for extlog trace events + * Some fixes affecting sqlite handling + * Handle failures of snprintf() + * Fix mce numfield decoded error diff --git a/Makefile.am b/Makefile.am index 2deb937..9c5f007 100644 --- a/Makefile.am +++ b/Makefile.am @@ -62,7 +62,7 @@ rpmlint: rpmlint misc/@PACKAGE@.spec `rpm --eval %{_topdir}`/SRPMS/@PACKAGE@-@PACKAGE_VERSION@*.src.rpm `rpm --eval %{_topdir}`/RPMS/*/@PACKAGE@-@PACKAGE_VERSION@*.rpm upload: - scp @PACKAGE@-@PACKAGE_VERSION@*.src.rpm @PACKAGE@-@PACKAGE_VERSION@.tar.bz2 misc/rasdaemon.spec fedorapeople.org:public_html + scp `rpm --eval %{_topdir}`/SRPMS/@PACKAGE@-@PACKAGE_VERSION@*.src.rpm @PACKAGE@-@PACKAGE_VERSION@.tar.bz2 misc/rasdaemon.spec fedorapeople.org:public_html # custom target install-data-local: diff --git a/configure.ac b/configure.ac index 9495491..6b18658 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([RASdaemon], 0.5.2) +AC_INIT([RASdaemon], 0.5.3) AM_SILENT_RULES([yes]) AC_CANONICAL_SYSTEM AC_CONFIG_MACRO_DIR([m4]) diff --git a/misc/rasdaemon.spec.in b/misc/rasdaemon.spec.in index 7acbf31..e3dfc84 100644 --- a/misc/rasdaemon.spec.in +++ b/misc/rasdaemon.spec.in @@ -29,7 +29,7 @@ an utility for reporting current error counts from the EDAC sysfs files. %build autoreconf -vfi -%configure --enable-mce --enable-aer --enable-sqlite3 +%configure --enable-mce --enable-aer --enable-sqlite3 --enable-extlog --enable-abrt-report make %{?_smp_mflags} %install @@ -49,6 +49,9 @@ rm INSTALL %{buildroot}/usr/include/*.h %changelog +* Sun Aug 10 2014 Mauro Carvalho Chehab 0.5.3-1 +- Bump to version 0.5.3 and enable ABRT and ExtLog + * Tue Sep 10 2013 Mauro Carvalho Chehab 0.4.2-1 - Fix ras-mc-ctl layout filling diff --git a/new_ver.sh b/new_ver.sh index 591b062..afbab56 100755 --- a/new_ver.sh +++ b/new_ver.sh @@ -1,6 +1,6 @@ #!/bin/bash -autoreconf && ./configure +autoreconf && ./configure --enable-sqlite3 --enable-aer --enable-mce --enable-extlog --enable-abrt-report VER="`perl -ne 'print "$1\n" if (/Version:\s*(.*)/);' misc/rasdaemon.spec`" if [ "x$VER" == "x" ]; then @@ -12,4 +12,4 @@ echo "************************************************************************" echo "Building RPM files for version: $VER" echo "************************************************************************" echo -make -j1 dist-bzip2 && make -j1 dist-rpm && git tag v$VER -f && git push --tags fedorahosted && make upload && git push --tags +git tag v$VER -f && make mock && make upload && git push --tags master