summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--contrib/python-dmidecode.spec5
-rw-r--r--src/version.h2
-rwxr-xr-xutils/set_version1
4 files changed, 7 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0d20b64
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.pyc
diff --git a/contrib/python-dmidecode.spec b/contrib/python-dmidecode.spec
index 8da8936..2c74597 100644
--- a/contrib/python-dmidecode.spec
+++ b/contrib/python-dmidecode.spec
@@ -3,7 +3,7 @@
Summary: Python module to access DMI data
Name: python-dmidecode
-Version: 3.12.1
+Version: 3.12.2
Release: 1%{?dist}
License: GPLv2
Group: System Environment/Libraries
@@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/python-dmidecode/
%changelog
+* Mon Jun 08 2015 Nima Talebi <ntd@amazon.com> - 3.12.2-1
+- Update to new release
+
* Mon Jul 8 2013 David Sommerseth <dazo@users.sourceforge.net> - 3.12.1-1
- Updated against upstream v3.12.1, which realigns against dmidecode 2.12
diff --git a/src/version.h b/src/version.h
index e9639c1..9938205 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define VERSION "3.12.1"
+#define VERSION "3.12.2"
diff --git a/utils/set_version b/utils/set_version
index 97c18c9..bbca211 100755
--- a/utils/set_version
+++ b/utils/set_version
@@ -13,6 +13,7 @@ fi
NEW_VERSION=$1
OLD_VERSION=$(cd src;python -c "from setup_common import *; print get_version();")
+rm -f src/setup_common.py[co]
# Prepare ChangeLog entry for the python-dmidecode.spec file
TSTAMP="$(date +%a\ %b\ %d\ %Y)"