diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0a767dcd..fddba05e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog
+### Changelog 2.00
+- Added support for FW 3.72.
+
### Changelog 1.99
- Added support for FW 3.71.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a1870a2a..9b768019 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@ project(VitaShell)
include("${VITASDK}/share/vita.cmake" REQUIRED)
set(VITA_APP_NAME "VitaShell")
set(VITA_TITLEID "VITASHELL")
-set(VITA_VERSION "01.99")
+set(VITA_VERSION "02.00")
# Flags and includes
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -O3 -Wno-unused-variable -Wno-unused-but-set-variable -Wno-format-truncation -fno-lto")
diff --git a/main.h b/main.h
index e70b11d0..b080e657 100644
--- a/main.h
+++ b/main.h
@@ -53,8 +53,8 @@
#define INCLUDE_EXTERN_RESOURCE(name) extern unsigned char _binary_resources_##name##_start; extern unsigned char _binary_resources_##name##_size; \
// VitaShell version major.minor
-#define VITASHELL_VERSION_MAJOR 0x01
-#define VITASHELL_VERSION_MINOR 0x99
+#define VITASHELL_VERSION_MAJOR 0x02
+#define VITASHELL_VERSION_MINOR 0x00
#define VITASHELL_VERSION ((VITASHELL_VERSION_MAJOR << 0x18) | (VITASHELL_VERSION_MINOR << 0x10))
diff --git a/modules/kernel/main.c b/modules/kernel/main.c
index f99eb290..14b88f1f 100644
--- a/modules/kernel/main.c
+++ b/modules/kernel/main.c
@@ -165,6 +165,7 @@ int _shellKernelMountById(ShellMountIdArgs *args) {
case 0x321E4852: // 3.69 retail
case 0x700DA0CD: // 3.70 retail
case 0xF7846B4E: // 3.71 retail
+ case 0xA8E80BA8: // 3.72 retail
module_get_offset(KERNEL_PID, tai_info.modid, 0, 0x2DE9, (uintptr_t *)&sceAppMgrFindProcessInfoByPid);
module_get_offset(KERNEL_PID, tai_info.modid, 0, 0x19E95, (uintptr_t *)&sceAppMgrMountById);
break;
@@ -280,6 +281,7 @@ int module_start(SceSize args, void *argp) {
case 0xF16E72C7: // 3.69 retail
case 0x81A49C2B: // 3.70 retail
case 0xF2D59083: // 3.71 retail
+ case 0x9C16D40A: // 3.72 retail
module_get_offset(KERNEL_PID, info.modid, 0, 0x18735, (uintptr_t *)&sceIoFindMountPoint);
break;
diff --git a/modules/patch/main.c b/modules/patch/main.c
index 5ed6fcf8..7f1e866e 100644
--- a/modules/patch/main.c
+++ b/modules/patch/main.c
@@ -48,6 +48,7 @@ int module_start(SceSize args, void *argp) {
case 0x321E4852: // 3.69 retail
case 0x700DA0CD: // 3.70 retail
case 0xF7846B4E: // 3.71 retail
+ case 0xA8E80BA8: // 3.72 retail
hooks[0] = taiInjectDataForKernel(KERNEL_PID, info.modid, 0, 0xB34C, &nop_nop_opcode, 4);
hooks[1] = taiInjectDataForKernel(KERNEL_PID, info.modid, 0, 0xB37C, &nop_nop_opcode, 2);
break;
diff --git a/pkg/sce_sys/livearea/contents/template.xml b/pkg/sce_sys/livearea/contents/template.xml
index 7dfead6e..866eb46e 100644
--- a/pkg/sce_sys/livearea/contents/template.xml
+++ b/pkg/sce_sys/livearea/contents/template.xml
@@ -28,7 +28,7 @@
- v1.99
+ v2.00
diff --git a/release/VitaShell.vpk b/release/VitaShell.vpk
index 43452bb9..bb571434 100644
Binary files a/release/VitaShell.vpk and b/release/VitaShell.vpk differ
diff --git a/release/eboot.bin b/release/eboot.bin
index 5371ca8b..3eae0298 100644
Binary files a/release/eboot.bin and b/release/eboot.bin differ
diff --git a/release/param.sfo b/release/param.sfo
index 03d56109..67ae9ef5 100644
Binary files a/release/param.sfo and b/release/param.sfo differ
diff --git a/release/template.xml b/release/template.xml
index 7dfead6e..866eb46e 100644
--- a/release/template.xml
+++ b/release/template.xml
@@ -28,7 +28,7 @@
- v1.99
+ v2.00
diff --git a/release/version.bin b/release/version.bin
index 6fde829a..b6a8ef3e 100644
Binary files a/release/version.bin and b/release/version.bin differ