mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
Update ChangeLog; bump the version to 0.2.1 everywhere.
Previously, 0.2.1 was mentioned in libcpuid.h, but this was not, actually, in effect; it wasn't mentioned in autoconf and Visual Studio project files. Also, cpuid_lib_version() still returned "0.2.0".
This commit is contained in:
parent
23c629295a
commit
2914256486
5 changed files with 31 additions and 10 deletions
24
ChangeLog
24
ChangeLog
|
@ -1,4 +1,24 @@
|
||||||
Version 0.1.0:
|
Version 0.1.0 (2008-10-15):
|
||||||
* Initial public release
|
* Initial public release
|
||||||
Version 0.1.1:
|
|
||||||
|
Version 0.1.1 (2009-07-06):
|
||||||
|
* Added intel_fn11 fields to cpu_raw_data_t to handle
|
||||||
|
new processor topology enumeration required on Core i7
|
||||||
* Support for Intel Nehalem architecture CPUs (Core i7, Xeon i7)
|
* Support for Intel Nehalem architecture CPUs (Core i7, Xeon i7)
|
||||||
|
|
||||||
|
Version 0.1.2 (2009-09-26):
|
||||||
|
* Added support for MSR reading through self-extracting kernel driver
|
||||||
|
on Win32.
|
||||||
|
|
||||||
|
Version 0.1.3 (2010-04-20):
|
||||||
|
* Added support for greater more accurate CPU clock measurements with
|
||||||
|
cpu_clock_by_ic()
|
||||||
|
|
||||||
|
Version 0.2.0 (2011-10-11):
|
||||||
|
* Support for AMD Bulldozer CPUs, 128-bit SSE unit size checking.
|
||||||
|
A backwards-incompatible change, since the sizeof cpu_id_t is now
|
||||||
|
different.
|
||||||
|
|
||||||
|
Version 0.2.1 (2012-05-26):
|
||||||
|
* Support for Ivy Bridge, and detecting the presence of the RdRand
|
||||||
|
instruction.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
AC_INIT([libcpuid CPU Identification library], [0.2.0], [libcpuid-devel@lists.sourceforge.net], [libcpuid])
|
AC_INIT([libcpuid CPU Identification library], [0.2.1], [libcpuid-devel@lists.sourceforge.net], [libcpuid])
|
||||||
AC_CONFIG_SRCDIR([libcpuid/libcpuid.h])
|
AC_CONFIG_SRCDIR([libcpuid/libcpuid.h])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
@ -17,9 +17,10 @@ dnl 11:0:1 Version 0.1.2: added cpu_msr* functions
|
||||||
dnl 11:0:2 Version 0.1.3: added cpu_clock_by_ic() function
|
dnl 11:0:2 Version 0.1.3: added cpu_clock_by_ic() function
|
||||||
dnl 11:0:3 Version 0.1.4: just an identification change, to reflect the detection table upgrades
|
dnl 11:0:3 Version 0.1.4: just an identification change, to reflect the detection table upgrades
|
||||||
dnl 12:1:0 Version 0.2.0: two more fields to cpu_id_t
|
dnl 12:1:0 Version 0.2.0: two more fields to cpu_id_t
|
||||||
|
dnl 12:1:1 Version 0.2.1: more processors support
|
||||||
LIBCPUID_CURRENT=12
|
LIBCPUID_CURRENT=12
|
||||||
LIBCPUID_AGE=1
|
LIBCPUID_AGE=1
|
||||||
LIBCPUID_REVISION=0
|
LIBCPUID_REVISION=1
|
||||||
AC_SUBST([LIBCPUID_AGE])
|
AC_SUBST([LIBCPUID_AGE])
|
||||||
AC_SUBST([LIBCPUID_REVISION])
|
AC_SUBST([LIBCPUID_REVISION])
|
||||||
AC_SUBST([LIBCPUID_CURRENT])
|
AC_SUBST([LIBCPUID_CURRENT])
|
||||||
|
|
|
@ -41,7 +41,7 @@ RSC=rc.exe
|
||||||
# PROP Intermediate_Dir "Release"
|
# PROP Intermediate_Dir "Release"
|
||||||
# PROP Target_Dir ""
|
# PROP Target_Dir ""
|
||||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
|
||||||
# ADD CPP /nologo /MD /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D VERSION=\"0.2.0\" /YX /FD /c
|
# ADD CPP /nologo /MD /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D VERSION=\"0.2.1\" /YX /FD /c
|
||||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||||
BSC32=bscmake.exe
|
BSC32=bscmake.exe
|
||||||
|
@ -64,7 +64,7 @@ LIB32=link.exe -lib
|
||||||
# PROP Intermediate_Dir "Debug"
|
# PROP Intermediate_Dir "Debug"
|
||||||
# PROP Target_Dir ""
|
# PROP Target_Dir ""
|
||||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
|
||||||
# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D VERSION=\"0.2.0\" /YX /FD /GZ /c
|
# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D VERSION=\"0.2.1\" /YX /FD /GZ /c
|
||||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||||
BSC32=bscmake.exe
|
BSC32=bscmake.exe
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
* @File libcpuid.h
|
* @File libcpuid.h
|
||||||
* @Author Veselin Georgiev
|
* @Author Veselin Georgiev
|
||||||
* @Date Oct 2008
|
* @Date Oct 2008
|
||||||
* @Version 0.2.0
|
* @Version 0.2.1
|
||||||
*
|
*
|
||||||
* Version history:
|
* Version history:
|
||||||
*
|
*
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
PreprocessorDefinitions="VERSION=\"0.2.0\""
|
PreprocessorDefinitions="VERSION=\"0.2.1\""
|
||||||
MinimalRebuild="TRUE"
|
MinimalRebuild="TRUE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
CharacterSet="2">
|
CharacterSet="2">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
PreprocessorDefinitions="VERSION=\"0.2.0\""
|
PreprocessorDefinitions="VERSION=\"0.2.1\""
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
|
@ -99,7 +99,7 @@
|
||||||
CharacterSet="2">
|
CharacterSet="2">
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
PreprocessorDefinitions="VERSION=\"0.2.0\""
|
PreprocessorDefinitions="VERSION=\"0.2.1\""
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
|
|
Loading…
Reference in a new issue