From bc6f3a0776cfc2efd7e888c1daea825db883d1c2 Mon Sep 17 00:00:00 2001 From: Gaston Dombiak Date: Thu, 17 Nov 2005 18:47:22 +0000 Subject: [PATCH] Updated for Smack 2.1.0. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@3099 b35dd754-fafc-0310-a699-88a17e54d16e --- build/build.xml | 2 +- build/resources/releasedocs/README.html | 4 +-- build/resources/releasedocs/changelog.html | 31 +++++++++++++++++++ .../smack/SmackConfiguration.java | 2 +- 4 files changed, 35 insertions(+), 4 deletions(-) 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.02.1.0
released:August 27, 2005November 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;