diff --git a/README.md b/README.md
index 87b963c..304ebd8 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,8 @@ Displays errors, warnings, and other inspections inline. Highlights the backgrou
 
 By default, the plugin shows **Errors**, **Warnings**, **Weak Warnings**, **Server Problems**, **Grammar Errors**, **Typos**, and other inspections with a high enough severity level. Configure visible severities in **Settings | Tools | Inspection Lens**.
 
+Left-click an inspection to show quick fixes. Middle-click an inspection to navigate to the relevant code in the editor.
+
 Inspired by [Error Lens](https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens) for Visual Studio Code, and [Inline Error](https://plugins.jetbrains.com/plugin/17302-inlineerror) for IntelliJ Platform.
 
 ![Inspection Lens Screenshot](.github/readme/intellij.png)
diff --git a/build.gradle.kts b/build.gradle.kts
index bb3e14e..d5bcfc5 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ plugins {
 }
 
 group = "com.chylex.intellij.inspectionlens"
-version = "1.4.1"
+version = "1.5"
 
 repositories {
 	mavenCentral()
diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml
index 675117b..ffcdd1a 100644
--- a/src/main/resources/META-INF/plugin.xml
+++ b/src/main/resources/META-INF/plugin.xml
@@ -8,10 +8,21 @@
     <br><br>
     By default, the plugin shows <b>Errors</b>, <b>Warnings</b>, <b>Weak Warnings</b>, <b>Server Problems</b>, <b>Grammar Errors</b>, <b>Typos</b>, and other inspections with a high enough severity level. Configure visible severities in <b>Settings | Tools | Inspection Lens</a>.
     <br><br>
+    Left-click an inspection to show quick fixes. Middle-click an inspection to navigate to the relevant code in the editor. 
+    <br><br>
     Inspired by <a href="https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens">Error Lens</a> for VS Code, and <a href="https://plugins.jetbrains.com/plugin/17302-inlineerror">Inline Error</a> for IntelliJ Platform.
   ]]></description>
   
   <change-notes><![CDATA[
+    <b>Version 1.5</b>
+    <ul>
+      <li>Added possibility to left-click an inspection to show quick fixes.</li>
+      <li>Added possibility to middle-click an inspection to navigate to relevant code in the editor.</li>
+      <li>Added option to use UI font instead of editor font.</li>
+      <li>Long inspection descriptions are now truncated to 120 characters.</li>
+      <li>Improved descriptions of Kotlin compiler inspections.</li>
+      <li>Fixed visual artifacts in Rendered Doc comments.</li>
+    </ul>
     <b>Version 1.4.1</b>
     <ul>
       <li>Fixed warnings in usage of IntelliJ SDK.</li>