diff --git a/build/build.xml b/build/build.xml
index 4684d6bdd..ec390c27e 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -36,7 +36,7 @@
-
+
diff --git a/build/resources/releasedocs/README.html b/build/resources/releasedocs/README.html
index 6cd2a2666..6466cda3d 100644
--- a/build/resources/releasedocs/README.html
+++ b/build/resources/releasedocs/README.html
@@ -56,10 +56,10 @@ Smack Readme
version: |
- 2.0.0 |
+ 2.1.0 |
released: |
- August 27, 2005 |
+ November 17, 2005 |
diff --git a/build/resources/releasedocs/changelog.html b/build/resources/releasedocs/changelog.html
index 3912ce6d5..3bea8c94f 100644
--- a/build/resources/releasedocs/changelog.html
+++ b/build/resources/releasedocs/changelog.html
@@ -55,6 +55,37 @@
Smack Changelog
+
+2.1.0 -- November 17, 2005
+
+! Warning: This release includes changes to the API.
+
+- [SMACK-29] - XMPPConnection was not resolving the xmpp-client service.
+- [SMACK-87] - DNS is now used to look up XMPP address.
+- [SMACK-82] - Connections are now secured using TLS only when server supports TLS.
+- [SMACK-85] - Improved performance by removing unnecessary delays that might occur while doing resource binding.
+- [SMACK-89] - An XMPPException is now thrown when SASL authentication fails.
+- [SMACK-90] - Old SSL connections no longer indicate XMPP 1.0 compliance.
+- [SMACK-92] - Adding existing roster entry to a new group was not working.
+- [SMACK-98] - Unsubscribe presence packets were not being acknowledged.
+- [SMACK-101] - Invitation rejection listeners were being fired with packets of type error.
+- [SMACK-102] - Invitation listeners were being fired with packets of type error.
+- [SMACK-103] - LastActivtity was throwing number format exception in certain cases.
+
+- [SMACK-64] - Added support for JEP-55: Jabber Search.
+- [SMACK-84] - Added support for ANONYMOUS SASL.
+- [SMACK-96] - Added support for discovering shared groups of the logged user.
+- [SMACK-104] - Added support for intercepting and modifying packets to be sent to the server.
+- [SMACK-107] - Added support for stream errors.
+- [SMACK-105] - Added support for knowing if a contact has to answer a presence subscription request.
+
+- [SMACK-55] - ! Modified parameters of ParticipantStatusListener#nicknameChanged method.
+- [SMACK-81] - ! Modified ParticipantStatusListener interface to include reason and actor information when kicking or banning users.
+- [SMACK-106] - ! Modified RosterListener interface to include more specific events (e.g entries added, deleted or modified).
+- [SMACK-83] - Allowed to perform SASL authentication over plain connections.
+- [SMACK-95] - Data stored in the enhanced debugger can now be limited.
+
+
2.0.0 -- August 27, 2005
diff --git a/source/org/jivesoftware/smack/SmackConfiguration.java b/source/org/jivesoftware/smack/SmackConfiguration.java
index 4a0a38869..ccb012293 100644
--- a/source/org/jivesoftware/smack/SmackConfiguration.java
+++ b/source/org/jivesoftware/smack/SmackConfiguration.java
@@ -44,7 +44,7 @@ import org.xmlpull.mxp1.MXParser;
*/
public final class SmackConfiguration {
- private static final String SMACK_VERSION = "2.0.0";
+ private static final String SMACK_VERSION = "2.1.0";
private static int packetReplyTimeout = 5000;
private static int keepAliveInterval = 30000;