diff --git a/README.md b/README.md
index 454128e..477b214 100644
--- a/README.md
+++ b/README.md
@@ -5,11 +5,20 @@
### Announcements
-*Important*: v6.0.0 is a complete re-architecting of this library. Improvements include proper device and mode support through an external Device object, correct handling of firmware features, and promise-based functionality for interfacing with device attachments. Although many new features were added, existing code will almost surely break upon upgrade.
+* v6.8.0 adds support for LEGO Super Mario.
### Introduction
-LEGO Powered Up is the successor to Power Functions, the system for adding electronics to LEGO models. Powered Up is a collection of ranges - starting with LEGO Education WeDo 2.0 released in 2016, LEGO Boost released in 2017, LEGO Powered Up released in 2018, LEGO Technic CONTROL+ released in 2019, and LEGO Education SPIKE Prime released in 2020. It also includes the 2018 Duplo App-Controlled Train sets.
+LEGO Powered Up is the successor to Power Functions, the system for adding electronics to LEGO models. Powered Up is a collection of ranges, all of which are compatible with each other:
+
+* LEGO Education WeDo 2.0
+* LEGO Boost
+* LEGO Powered Up
+* LEGO Technic CONTROL+
+* LEGO Education SPIKE Prime
+* LEGO Mindstorms Robot Inventor
+
+Other products that speak the Powered Up protocol include the Duplo App-Controlled trains and LEGO Super Mario, both of which are compatible with this library.
This library allows communication and control of Powered Up devices and peripherals via Javascript, both from Node.js and from the browser using Web Bluetooth.
@@ -23,7 +32,7 @@ npm install node-poweredup --save
node-poweredup uses the Noble BLE library by Sandeep Mistry. On macOS everything should function out of the box. On Linux and Windows there are [certain dependencies which may need installed first](https://github.com/abandonware/noble#prerequisites).
-Note: node-poweredup has been tested on macOS 10.15 and Debian/Raspbian on the Raspberry Pi 3 Model B.
+Note: node-poweredup has been tested on macOS 11.0 and Debian/Raspbian on the Raspberry Pi 3 Model B.
### Compatibility
@@ -57,6 +66,7 @@ In addition, the Hubs themselves have certain built-in features which this libra
| Powered Up Remote | 88010 | RGB LED
Left and Right Control Buttons
Button | 60197
60198 |
| Duplo Train Base | 28743 | RGB LED/Headlights
Speaker
Speedometer
Motor
Color and Distance Sensor
Button | 10874
10875 |
| Control+ Hub | 22127 | RGB LED
Button
Tilt Sensor
Accelerometer | 42099
42100 |
+| Super Mario | 71360 | Pants Sensor
Barcode and Color Sensor | 71360 |
### Known Issues and Limitations
diff --git a/package.json b/package.json
index 51cf034..4795cbb 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "node-poweredup",
- "version": "6.7.0",
+ "version": "6.8.0",
"description": "A Javascript module to interface with LEGO Powered Up components.",
"homepage": "https://github.com/nathankellenicki/node-poweredup/",
"main": "dist/node/index-node.js",