diff --git a/Asuro.iso b/Asuro.iso
index 34ce4fab..9ce2461d 100644
Binary files a/Asuro.iso and b/Asuro.iso differ
diff --git a/bin/kernel.bin b/bin/kernel.bin
index 87386766..85d0180c 100755
Binary files a/bin/kernel.bin and b/bin/kernel.bin differ
diff --git a/iso/boot/asuro.bin b/iso/boot/asuro.bin
index 87386766..85d0180c 100755
Binary files a/iso/boot/asuro.bin and b/iso/boot/asuro.bin differ
diff --git a/lib/IDE.ppu b/lib/IDE.ppu
index 41ed4ca4..2f187c24 100644
Binary files a/lib/IDE.ppu and b/lib/IDE.ppu differ
diff --git a/lib/asuro.ppu b/lib/asuro.ppu
index 42979101..dba064e3 100644
Binary files a/lib/asuro.ppu and b/lib/asuro.ppu differ
diff --git a/lib/fat32.ppu b/lib/fat32.ppu
index fb61b101..290afffe 100644
Binary files a/lib/fat32.ppu and b/lib/fat32.ppu differ
diff --git a/lib/libpconsole.a b/lib/libpconsole.a
index d7fa8bd1..4fa0a4a0 100644
Binary files a/lib/libpconsole.a and b/lib/libpconsole.a differ
diff --git a/lib/libpmultiboot.a b/lib/libpmultiboot.a
index d91c1fa5..12c82d7c 100644
Binary files a/lib/libpmultiboot.a and b/lib/libpmultiboot.a differ
diff --git a/lib/libpsystem.a b/lib/libpsystem.a
index a786c4aa..7871968a 100644
Binary files a/lib/libpsystem.a and b/lib/libpsystem.a differ
diff --git a/lib/terminal.ppu b/lib/terminal.ppu
index 072471af..0d3c4877 100644
Binary files a/lib/terminal.ppu and b/lib/terminal.ppu differ
diff --git a/src/include/asuro.pas b/src/include/asuro.pas
index d281f712..507982ae 100644
--- a/src/include/asuro.pas
+++ b/src/include/asuro.pas
@@ -3,7 +3,12 @@ unit asuro;
 interface
  
 const
-     VERSION = '1.0.0-549a';
+     VERSION       = '1.0.0-573a';
+     VERSION_MAJOR = '1';
+     VERSION_MINOR = '0';
+     VERSION_SUB   = '0';
+     REVISION      = '573';
+     RELEASE       = 'a';
  
 implementation
  
diff --git a/versioning.sh b/versioning.sh
index b4a4d430..294fc013 100755
--- a/versioning.sh
+++ b/versioning.sh
@@ -14,7 +14,12 @@ echo " " >> $outfile
 echo "interface" >> $outfile
 echo " " >> $outfile
 echo "const" >> $outfile
-echo "     VERSION = '$major.$minor.$sub-$revision$release';" >> $outfile
+echo "     VERSION       = '$major.$minor.$sub-$revision$release';" >> $outfile
+echo "     VERSION_MAJOR = '$major';" >> $outfile
+echo "     VERSION_MINOR = '$minor';" >> $outfile
+echo "     VERSION_SUB   = '$sub';" >> $outfile
+echo "     REVISION      = '$revision';" >> $outfile
+echo "     RELEASE       = '$release';" >> $outfile
 echo " " >> $outfile
 echo "implementation" >> $outfile
 echo " " >> $outfile