diff --git a/Changelog b/Changelog
index 3156b1d25c084421427c8cfd4f29a13c87f27ee8..e7a9a2ae7f74fbc4ca3219594565a67f8ec651bd 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,33 @@
+Release 1.7.3
+=============
+
+This release adds some minor improvements, and fixes a lot of bugs. Most of
+these has been in master branch since a long time.
+
+New features
+------------
+
+* Add option to auto-close magit buffer/window on clean state #132
+* Jump to source is now line precise #152 #153
+  Using the 'E' (for edit) mapping, cursor will now jump to the exact line
+  instead of the beginning of the hunk.
+* Smarter cursor position when staging/refreshing.
+  When refreshing, the cirsor stays in the same position. When (un)staging,
+  cursor move to the hunk close to the current one.
+* Add vimagit support to vim-airline
+
+Bug fixes
+---------
+
+* Fix freeze while refresh fix #170 #36
+* Fix character escape issues #156 #168
+  These are two old issues, which have been reproduced thanks to the issue
+  #168. Big up to @akrejczinger for the docker image.
+* Discarding untracked file results in an error in some cases fix #165
+* Ungraceful behaviour when opening magit outside of a git repo fix #162
+* Freshly created repository fails to open in vimagit fix #169
+* Handle commit set at the end of magit_default_sections #149
+
 Release 1.7.2
 =============
 
diff --git a/plugin/magit.vim b/plugin/magit.vim
index bdeb3fcfa9c98407c324ba6e0e7523d5b7f93d4a..8b6a9a4a491d3b4efff6cffd376f2f3f78105782 100644
--- a/plugin/magit.vim
+++ b/plugin/magit.vim
@@ -5,7 +5,7 @@ if exists('g:loaded_magit') || !executable('git') || &cp
 endif
 let g:loaded_magit = 1
 
-let g:vimagit_version = [1, 7, 2]
+let g:vimagit_version = [1, 7, 3]
 
 " Initialisation {{{