diff --git a/CHANGELOG.md b/CHANGELOG.md
index 59dac18..3acfe1e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# Change Log
+## 1.0.3
+24 January 2024
+
+- Clarify the keybindings in the README.
+
## 1.0.2
24 January 2024
diff --git a/README.md b/README.md
index 3612e8c..608046d 100644
--- a/README.md
+++ b/README.md
@@ -16,11 +16,19 @@ The extension does two things, it:
There are options for how you want the message to be displayed. You can show the usual popup "toast" message at the bottom right of VS Code, which disappears after a while. Alternatively, you can display a modal popup, which you have to click to dismiss.
-To use the extension, either:
-- Use a keypress:
- - For the "toast" message, press Alt+j (Windows/Linux) or control+command+v (Mac)
- - For the modal popup, press Shift+Alt+j (Windows/Linux) or Shift+control+command+v (Mac)
-- Go to the Command Palette (Ctrl+Shift+p (Windows/Linux) or Shift+command+p (Mac)), type `version` and select either **Versioning identification (Toast)** or **Versioning identification (Modal)**.
+## Using the extension
+
+In a Markdown file that contains Liquid version tags, place the cursor in the text for which you want to identify the versioning, then:
+
+- To see the versioning in a "toast" popup, click:
+ - control+command+v on MacOS
+ - alt+j on Windows
+
+- To see the versioning in a modal dialog, click:
+ - shift+control+command+v on MacOS
+ - shift+alt+j on Windows
+
+Alternatively, go to the Command Palette (Ctrl+Shift+p (Windows/Linux) or Shift+command+p (Mac)), type `version` and select either **Versioning identification (Toast)** or **Versioning identification (Modal)**.
The extension highlights each set of tags that affects the current cursor position in a different color. In this example, the cursor is in the word "series" on line 112. The text at that point is within a set of tags that's nested within another tag set, that's also nested. So three sets of tags are highlighted. The "toast" popup describes the versioning.
diff --git a/package.json b/package.json
index 26659e1..adfc24a 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"displayName": "Versioning Identifier",
"description": "Highlight the Liquid versioning that applies at any point within a Markdown file.",
"icon": "images/versioning-identifier-logo-128px.png",
- "version": "1.0.2",
+ "version": "1.0.3",
"publisher": "AlistairChristie",
"license": "See the LICENSE file",
"keywords": [
diff --git a/version-identifier-1.0.3.vsix b/version-identifier-1.0.3.vsix
new file mode 100644
index 0000000..6adc043
Binary files /dev/null and b/version-identifier-1.0.3.vsix differ