diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,25 @@
+# Version 0.4.6.3
+
+-   update for GHC 9.6.2
+-   remove git repository from cabal file
+-   update maintainer email address
+
+# Version 0.4.6.2
+
+-   update for GHC 9.2.1
+-   expose X86.Asm module
+
+# Version 0.4.6.1
+
+-   fix source code formatting
+
+# Version 0.4.6
+
+-   export more symbols (Csaba Hruska)
+-   add stack.yaml (Matheus Magalhaes de Alcantara)
+-   update for GHC 8.6.5 (Matheus Magalhães de Alcantara)
+-   source code formatting (Matheus Magalhães de Alcantara)
+
 # Version 0.4.5
 
 -   fix build with newer base
@@ -8,7 +30,8 @@
 
 # Version 0.4.3
 
--   fixes to compile on GHC 7.10 and on Windows
+-   fixes to compile on GHC 7.10 and on Windows (Balázs Kőműves)
+-   utility function to save r12..r15 (Balázs Kőműves)
 
 # Version 0.4.2
 
@@ -56,7 +79,7 @@
 
 # Version 0.1.4
 
--   OS X operating system support (Balázs Kőműves)
+-   OSX operating system support (Balázs Kőműves)
 -   better show for db
 -   bugfix
     -   save flags in traceReg
diff --git a/x86-64bit.cabal b/x86-64bit.cabal
--- a/x86-64bit.cabal
+++ b/x86-64bit.cabal
@@ -1,25 +1,19 @@
 name:                x86-64bit
-version:             0.4.6.2
-homepage:            https://github.com/divipp/x86-64
+version:             0.4.6.3
 synopsis:            Runtime code generation for x86 64 bit machine code
 description:         The primary goal of x86-64bit is to provide a lightweight assembler for machine generated 64 bit x86 assembly instructions. See README.md for further details.
 license:             BSD3
 license-file:        LICENSE
 author:              Péter Diviánszky
-maintainer:          divipp@gmail.com
+maintainer:          divip@divip.hu
 category:            Code Generation
 build-type:          Simple
 cabal-version:       >=1.10
 stability:           Experimental
-tested-with:         GHC == 8.0.1
 extra-source-files:  README.md
                      CHANGELOG.md
                      TODO.md
 
-source-repository head
-  type:     git
-  location: https://github.com/divipp/x86-64
-
 library
   exposed-modules:
     CodeGen.X86
@@ -54,11 +48,11 @@
     ScopedTypeVariables
 
   build-depends:
-    base       >= 4.8  && <4.17,
+    base       >= 4.8  && <4.19,
     monads-tf  >= 0.1  && <0.2,
     tardis     >= 0.4  && <0.5,
-    vector     >= 0.11 && <0.13,
-    deepseq
+    vector     >= 0.11 && <0.14,
+    deepseq    >= 1.4  && < 1.5
 
   if os(windows)
     build-depends: Win32
@@ -76,12 +70,12 @@
     CodeGen.X86.Tests
 
   build-depends:
-    base       >= 4.8  && <4.17,
+    base       >= 4.8  && <4.19,
     monads-tf  >= 0.1  && <0.2,
     tardis     >= 0.4  && <0.5,
-    vector     >= 0.11 && <0.13,
+    vector     >= 0.11 && <0.14,
     QuickCheck >= 2.8  && <2.15,
-    deepseq
+    deepseq    >= 1.4  && < 1.5
 
   if os(windows)
     build-depends: Win32
