diff --git a/build/build.xml b/build/build.xml index 00c10cbed..b146852a2 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 6466cda3d..f420da991 100644 --- a/build/resources/releasedocs/README.html +++ b/build/resources/releasedocs/README.html @@ -56,10 +56,10 @@ Smack Readme - + - +
version:2.1.02.2.0
released:November 17, 2005March 9, 2006
diff --git a/build/resources/releasedocs/changelog.html b/build/resources/releasedocs/changelog.html index 260a7938c..49600d139 100644 --- a/build/resources/releasedocs/changelog.html +++ b/build/resources/releasedocs/changelog.html @@ -55,6 +55,33 @@ Smack Changelog +

+2.2.0 -- March 9, 2006 +

+

    +
  • [SMACK-122] - Added support for JEP-96: File Transfer.
  • +
  • [SMACK-72] - Added support for JEP-47: In-Band Bytestreams.
  • +
  • [SMACK-122] - Added support for JEP-65: SOCKS5 Bytestreams
  • +
  • [SMACK-112] - Added support for JEP-38 Stream Compression.
  • +
  • [SMACK-117] - Added support for JEP-33: Extended Stanza Addressing.
  • +
  • [SMACK-27] - Certification validation is now pluggable.
  • +
  • [SMACK-118] - Added methods to dynamically remove providers.
  • +
  • [SMACK-125] - Added support for deaf occupant in MUC rooms.
  • + +
  • [SMACK-109] - Optimized client performance.
  • +
  • [SMACK-113] - Added support for choosing if TLS should be used or not.
  • +
  • [SMACK-114] - Added support for choosing if SASL should be used or not.
  • +
  • [SMACK-123] - A thread is no longer used for packet writer listeners.
  • + +
  • [SMACK-110] - Resource binding and session establishment are now requested only if the server offered them.
  • +
  • [SMACK-111] - Fixed concurrency issue with date formatter.
  • +
  • [SMACK-116] - Fixed vCard issues.
  • +
  • [SMACK-119] - Fixed AccessControlException when using vCard from an applet.
  • +
  • [SMACK-120] - Listener thread was not being shutdown properly.
  • +
  • [SMACK-124] - Parsing resource binding packets was requiring smackx.jar file to be in the classpath.
  • +
  • [SMACK-97] - Fixed functional test failures in PresencePriorityTest and RosterTest.
  • +
+

2.1.0 -- November 17, 2005

diff --git a/source/org/jivesoftware/smack/SmackConfiguration.java b/source/org/jivesoftware/smack/SmackConfiguration.java index ccb012293..250f372d6 100644 --- a/source/org/jivesoftware/smack/SmackConfiguration.java +++ b/source/org/jivesoftware/smack/SmackConfiguration.java @@ -20,12 +20,12 @@ package org.jivesoftware.smack; -import java.io.*; -import java.net.*; -import java.util.*; - -import org.xmlpull.v1.*; import org.xmlpull.mxp1.MXParser; +import org.xmlpull.v1.XmlPullParser; + +import java.io.InputStream; +import java.net.URL; +import java.util.Enumeration; /** * Represents the configuration of Smack. The configuration is used for: @@ -44,7 +44,7 @@ import org.xmlpull.mxp1.MXParser; */ public final class SmackConfiguration { - private static final String SMACK_VERSION = "2.1.0"; + private static final String SMACK_VERSION = "2.2.0"; private static int packetReplyTimeout = 5000; private static int keepAliveInterval = 30000;