diff --git a/docs/simplesamlphp-changelog.txt b/docs/simplesamlphp-changelog.txt
index 278c918f600dfe869e772daa4738e6d8eb56335e..ea17b82ea557585bbac5be584de42c9f622e468c 100644
--- a/docs/simplesamlphp-changelog.txt
+++ b/docs/simplesamlphp-changelog.txt
@@ -8,7 +8,7 @@ See the upgrade notes for specific information about upgrading.
 
 ## Version 1.9
 
-Released 2012-03-XX.
+Released 2012-04-XX.
 
   * Restructure error templates to share a common base template.
   * Warnings about URL length limits from Suhosin PHP extension.
@@ -56,7 +56,7 @@ Released 2012-03-XX.
 
 ### `authcrypt`
 
-  * `authcrypt:Hash`: New authentication source for checking username & password against configuration.
+  * `authcrypt:Hash`: New authentication source for checking username & password against a list of usernames and hashed passwords.
   * `authcrypt:Htpasswd`: New authentication source for checking username & password against a `.htpasswd`-file.
 
 ### `authfacebook`
@@ -121,7 +121,7 @@ Released 2012-03-XX.
 
 ### `negotiate`
 
-  * New module implementing "negotiate" authentication, which can be used for Windows SSO.
+  * New module implementing "negotiate" authentication, which can be used for Kerberos authentication (including Windows SSO).
 
 ### `oauth`
 
@@ -142,11 +142,11 @@ Released 2012-03-XX.
   * Log more debug information when we are unable to determine the binding a message was sent with.
   * Require HTTP-POST messages to be sent as POST data and HTTP-Redirect messages to be sent as query parameters.
   * Link to download certificates from metadata pages.
-  * Fix canonicalization of <md:EntityDescriptor> and <md:EntitiesDescriptor>.
+  * Fix canonicalization of &lt;md:EntityDescriptor> and &lt;md:EntitiesDescriptor>.
   * Support for receiving and sending extension in authentication request messages.
   * Reuse SimpleSAML_Utilities::postRedirect() to send HTTP-POST messages.
   * Allow ISO8601 durations with subsecond precision.
-  * Add support for parsing and serializing the <mdrpi:PublicationInfo> metadata extension.
+  * Add support for parsing and serializing the &lt;mdrpi:PublicationInfo> metadata extension.
   * Ignore cacheDuration when validating metadata.
   * Better error handling when receiving a SAML 2.0 artifact from an unknown entity.
   * IdP: Do not always trigger reauthentication when the authentication request contains a IdPList-element.
diff --git a/docs/simplesamlphp-idp.txt b/docs/simplesamlphp-idp.txt
index b246dec66149c2e50ac0c81e76cd3f5019fe62d0..8f110f36ecf49c41df6f0e7dc78912ae7befe158 100644
--- a/docs/simplesamlphp-idp.txt
+++ b/docs/simplesamlphp-idp.txt
@@ -28,6 +28,12 @@ Authentication module
 
 The next step is to configure the way users authenticate on your IdP. Various modules in the `modules/` directory provides methods for authenticating your users. This is an overview of those that are included in the simpleSAMLphp distribution:
 
+`authcrypt:Hash`
+: Username & password authentication with hashed passwords.
+
+`authcrypt:Htpasswd`
+: Username & password authentication against .htpasswd file.
+
 [`authX509:authX509userCert`](./authX509:authX509)
 : Authenticate against a LDAP database with a SSL client certificate.
 
diff --git a/docs/simplesamlphp-upgrade-notes-1.9.txt b/docs/simplesamlphp-upgrade-notes-1.9.txt
index 3d57e7e2b4a8544d1803f12eca6cb5857de54820..865abdd2923463ec638cc62e0d2b07c701c8194b 100644
--- a/docs/simplesamlphp-upgrade-notes-1.9.txt
+++ b/docs/simplesamlphp-upgrade-notes-1.9.txt
@@ -6,3 +6,4 @@ Upgrade notes for simpleSAMLphp 1.9
   * The X-Frame-Options has been added to the default templates, to prevent the pages from being loaded in iframes.
   * Access permissions of generated files are now restricted to the current user.
   * The code to set cookies now requires PHP version >= 5.2. (PHP version 5.2.0 or newer has been the only supported version for a while, but it has in some cases been possible to run simpleSAMLphp with older versions.)
+  * It used to be possible to set an array of endpoints for the SingleSignOnService in `saml20-idp-hosted.php`. That is no longer supported.