diff --git a/CHANGELOG b/CHANGELOG
index 0029eda..bf95ae9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+TRANSIP API V5.16
+NEW
+- Added SSHFP, TLSA, and CAA to DnsEntry as acceptable types.
+
 TRANSIP API V5.15
 
 NEW
diff --git a/Transip/ColocationService.php b/Transip/ColocationService.php
index f084e1d..fda0580 100644
--- a/Transip/ColocationService.php
+++ b/Transip/ColocationService.php
@@ -16,7 +16,7 @@ class Transip_ColocationService
 	/** The SOAP service that corresponds with this class. */
 	const SERVICE = 'ColocationService';
 	/** The API version. */
-	const API_VERSION = '5.15';
+	const API_VERSION = '5.16';
 	/** @var SoapClient  The SoapClient used to perform the SOAP calls. */
 	protected static $_soapClient = null;
 
diff --git a/Transip/DnsEntry.php b/Transip/DnsEntry.php
index 89dd520..3e05018 100644
--- a/Transip/DnsEntry.php
+++ b/Transip/DnsEntry.php
@@ -16,6 +16,9 @@ class Transip_DnsEntry
 	const TYPE_NS = 'NS';
 	const TYPE_TXT = 'TXT';
 	const TYPE_SRV = 'SRV';
+	const TYPE_SSHFP = 'SSHFP';
+	const TYPE_TLSA = 'TLSA';
+	const TYPE_CAA = 'CAA';
 
 	/**
 	 * The name of the dns entry, for example '@' or 'www'
diff --git a/Transip/DnsService.php b/Transip/DnsService.php
index 3b979a0..854ef20 100644
--- a/Transip/DnsService.php
+++ b/Transip/DnsService.php
@@ -17,7 +17,7 @@ class Transip_DnsService
 	/** The SOAP service that corresponds with this class. */
 	const SERVICE = 'DnsService';
 	/** The API version. */
-	const API_VERSION = '5.15';
+	const API_VERSION = '5.16';
 	/** @var SoapClient  The SoapClient used to perform the SOAP calls. */
 	protected static $_soapClient = null;
 
diff --git a/Transip/DomainService.php b/Transip/DomainService.php
index 2057022..1e91677 100644
--- a/Transip/DomainService.php
+++ b/Transip/DomainService.php
@@ -23,7 +23,7 @@ class Transip_DomainService
 	/** The SOAP service that corresponds with this class. */
 	const SERVICE = 'DomainService';
 	/** The API version. */
-	const API_VERSION = '5.15';
+	const API_VERSION = '5.16';
 	/** @var SoapClient  The SoapClient used to perform the SOAP calls. */
 	protected static $_soapClient = null;
 
diff --git a/Transip/ForwardService.php b/Transip/ForwardService.php
index c7c762a..8773e31 100644
--- a/Transip/ForwardService.php
+++ b/Transip/ForwardService.php
@@ -16,7 +16,7 @@ class Transip_ForwardService
 	/** The SOAP service that corresponds with this class. */
 	const SERVICE = 'ForwardService';
 	/** The API version. */
-	const API_VERSION = '5.15';
+	const API_VERSION = '5.16';
 	/** @var SoapClient  The SoapClient used to perform the SOAP calls. */
 	protected static $_soapClient = null;
 
diff --git a/Transip/HaipService.php b/Transip/HaipService.php
index 982952f..38ca24d 100644
--- a/Transip/HaipService.php
+++ b/Transip/HaipService.php
@@ -17,7 +17,7 @@ class Transip_HaipService
 	/** The SOAP service that corresponds with this class. */
 	const SERVICE = 'HaipService';
 	/** The API version. */
-	const API_VERSION = '5.15';
+	const API_VERSION = '5.16';
 	/** @var SoapClient  The SoapClient used to perform the SOAP calls. */
 	protected static $_soapClient = null;
 
diff --git a/Transip/PropositionService.php b/Transip/PropositionService.php
index 33eb92b..e164e56 100644
--- a/Transip/PropositionService.php
+++ b/Transip/PropositionService.php
@@ -15,7 +15,7 @@ class Transip_PropositionService
 	/** The SOAP service that corresponds with this class. */
 	const SERVICE = 'PropositionService';
 	/** The API version. */
-	const API_VERSION = '5.15';
+	const API_VERSION = '5.16';
 	/** @var SoapClient  The SoapClient used to perform the SOAP calls. */
 	protected static $_soapClient = null;
 
diff --git a/Transip/VpsService.php b/Transip/VpsService.php
index 82f5dd5..1c373b8 100644
--- a/Transip/VpsService.php
+++ b/Transip/VpsService.php
@@ -22,7 +22,7 @@ class Transip_VpsService
 	/** The SOAP service that corresponds with this class. */
 	const SERVICE = 'VpsService';
 	/** The API version. */
-	const API_VERSION = '5.15';
+	const API_VERSION = '5.16';
 	/** @var SoapClient  The SoapClient used to perform the SOAP calls. */
 	protected static $_soapClient = null;
 
diff --git a/Transip/WebhostingService.php b/Transip/WebhostingService.php
index 7688cb7..99cb925 100644
--- a/Transip/WebhostingService.php
+++ b/Transip/WebhostingService.php
@@ -22,7 +22,7 @@ class Transip_WebhostingService
 	/** The SOAP service that corresponds with this class. */
 	const SERVICE = 'WebhostingService';
 	/** The API version. */
-	const API_VERSION = '5.15';
+	const API_VERSION = '5.16';
 	/** @var SoapClient  The SoapClient used to perform the SOAP calls. */
 	protected static $_soapClient = null;