diff --git a/CHANGES b/CHANGES
index 85e7bc5b333b9a7277174551e0868d1f76610ebc..274162015cf97cc3137c598fe0533e66abacfc6b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,24 +1,32 @@
-0.46
+0.46 
 
 - Fix long-standing bug which caused connections to be closed if an ssh-agent
   socket was no longer available
 
-- print a warning if we seem to be blocking on /dev/random 
+- Print a warning if we seem to be blocking on /dev/random 
   (suggested by Paul Fox)
 
-- fixed a memory leak in DSS code (thanks to Boris Berezovsky for the patch)
+- Fixed a memory leak in DSS code (thanks to Boris Berezovsky for the patch)
 
 - dbclient -L no longer segfaults, allocate correct buffer size (thanks
-  to David Cook for reporting it)
+  to David Cook for reporting it, and Christopher Faylor for independently
+  sending in a patch)
 
-- added RSA blinding (recommended by Dan Kaminsky)
+- Added RSA blinding to signing code
 
-- rearranged bignum reading/random generation code
+- Rearranged bignum reading/random generation code
 
 - Reset the non-blocking status on stderr and stdout as well as stdin,
   fixes a problem where the shell running dbclient will exit (thanks to 
   Brent Roman for reporting it)
 
+- Fix so that all file descriptors are closed so that child shell doesn't
+  inherit descriptors (thanks to Linden May for the patch)
+
+- Change signkey.c so that it gcc 4 doesn't generate incorrect code
+
+- Update to LibTomCrypt 1.05 and LibTomMath 0.35
+
 0.45 - Mon March 7 2005
 
 - Makefile no longer appends 'static' to statically linked binaries
diff --git a/debian/changelog b/debian/changelog
index 9e36480004348247471698d277ff293e15a0d36b..7ac611aaf70d3ca52abefda5533d786a2a216e5a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dropbear (0.46-0.1) unstable; urgency=medium
+
+  * New upstream release, various fixes.
+
+ -- Matt Johnston <matt@ucc.asn.au>  Fri, 8 July 2005 21:32:55 +0800
+
 dropbear (0.45-3) unstable; urgency=low
 
   * debian/dropbear.init: init script prints human readable message in case
diff --git a/debian/rules b/debian/rules
index af07aba7d82ae2c30d753ddf4710e343e2ae0f3c..52c3ea81da035dee7d490a3ab782997569543bf7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -85,7 +85,7 @@ install: deb-checkdir deb-checkuid build-stamp
 	done
 	gzip -9 '$(DIR)'/usr/share/man/man8/*.8
 	install -d -m0755 '$(DIR)'/usr/share/man/man1
-	install -m644 debian/dbclient.1 '$(DIR)'/usr/share/man/man1/
+	install -m644 dbclient.1 '$(DIR)'/usr/share/man/man1/
 	gzip -9 '$(DIR)'/usr/share/man/man1/*.1
 	# copyright, changelog
 	cat debian/copyright.in LICENSE >debian/copyright
diff --git a/options.h b/options.h
index 7fa2ea0a52cbd235760eef1ae19e8c13d9652e99..5211c778554d2c8d10f0fc3771ce153bec39e7b6 100644
--- a/options.h
+++ b/options.h
@@ -194,7 +194,7 @@ etc) slower (perhaps by 50%). Recommended for most small systems. */
  *******************************************************************/
 
 #ifndef DROPBEAR_VERSION
-#define DROPBEAR_VERSION "0.45"
+#define DROPBEAR_VERSION "0.46"
 #endif
 
 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION