diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj
index 4c7d9c0fc8..407fc013ba 100644
--- a/src/Fable.Cli/Fable.Cli.fsproj
+++ b/src/Fable.Cli/Fable.Cli.fsproj
@@ -4,9 +4,9 @@
true
Exe
net5.0
- 3.7.5
- 3.7.5
- * Prevent combining absolute paths
+ 3.7.6
+ 3.7.6
+ * Type.IsInstanceOfType works for interfaces decorated with Global/Import @chkn
Major
false
diff --git a/src/Fable.Cli/RELEASE_NOTES.md b/src/Fable.Cli/RELEASE_NOTES.md
index 159b0e83f4..9c2b01c75f 100644
--- a/src/Fable.Cli/RELEASE_NOTES.md
+++ b/src/Fable.Cli/RELEASE_NOTES.md
@@ -1,3 +1,7 @@
+### 3.7.6
+
+* Type.IsInstanceOfType works for interfaces decorated with Global/Import @chkn
+
### 3.7.5
* Prevent combining absolute paths
diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs
index cf71795b51..994e7dd0d3 100644
--- a/src/Fable.Transforms/Global/Compiler.fs
+++ b/src/Fable.Transforms/Global/Compiler.fs
@@ -1,7 +1,7 @@
namespace Fable
module Literals =
- let [] VERSION = "3.7.5"
+ let [] VERSION = "3.7.6"
type CompilerOptionsHelper =
static member DefaultExtension = ".fs.js"