diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4029a73..7cd7fc8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -46,6 +46,7 @@ We had to make **several interface changes** to keep systeminformation as consis
- `cpu()`: extended socket list (win)
- `cpu()`: added virtualization if cpu supports virtualization
- `cpu()`: now flags are part of this function
+- `cpuTemperature()` added added socket and chipset temp (linux)
- `diskLayout()`: added USB drives (mac OS)
- `fsSize()`: added available
- `fsSize()`: improved calculation of used
@@ -76,6 +77,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
| Version | Date | Comment |
| -------------- | -------------- | -------- |
+| 5.6.0 | 2021-03-03 | `cpuTemperature()` added socket and chipset temp (linux) |
| 5.5.0 | 2021-02-25 | `dockerVolumes()` added |
| 5.4.0 | 2021-02-24 | `dockerImages()` added |
| 5.3.5 | 2021-02-23 | `dockerContainerStats()` fixed parameter * |
diff --git a/README.md b/README.md
index de680d3..d287483 100644
--- a/README.md
+++ b/README.md
@@ -103,14 +103,13 @@ si.cpu()
(last 7 major and minor version releases)
+- Version 5.6.0: `cpuTemperature()` added added socket and chipset temp (linux)
- Version 5.5.0: `dockerVolumes()` added
- Version 5.4.0: `dockerImages()` added
- Version 5.3.0: `osInfo()` added remoteSession (win only)
- Version 5.2.0: `wifiInterfaces()` and `wifiConnections()` added
- Version 5.1.0: `memLayout()` added ECC flag, `bios()` added language, features (linux)
- Version 5.0.0: new version 5 - attention there are some breaking changes. See [detailed version 5 changes here][changes5-url].
-- Version 4.34.0: `system()` added flag virtual (linux, windows)
-- Version 4.33.0: `graphics()` added nvidia-smi support (linux, windows)
- ...
You can find all changes here: [detailed changelog][changelog-url]
@@ -224,6 +223,8 @@ Full function reference with examples can be found at [https://systeminformation
| | main | X | X | X | X | | main temperature (avg) |
| | cores | X | X | X | X | | array of temperatures |
| | max | X | X | X | X | | max temperature |
+| | socket | X | | | | | array socket temperatures |
+| | chipset | X | | | | | chipset temperature |
#### 4. Memory
diff --git a/docs/changes.html b/docs/changes.html
index 2d21469..d913931 100644
--- a/docs/changes.html
+++ b/docs/changes.html
@@ -173,6 +173,7 @@
cpu(): extended socket list (win)
cpu(): added virtualization if cpu supports virtualization
cpu(): now flags are part of this function
+
cpuTemperature(): added socket and chipset temperature (linux)