diff --git a/build/build.xml b/build/build.xml index d4e7a98a9..c30efd8cb 100644 --- a/build/build.xml +++ b/build/build.xml @@ -28,7 +28,7 @@ - + diff --git a/build/resources/releasedocs/changelog.html b/build/resources/releasedocs/changelog.html index 204e6bcb4..b2d91cf82 100644 --- a/build/resources/releasedocs/changelog.html +++ b/build/resources/releasedocs/changelog.html @@ -181,6 +181,7 @@ hr {
  • [SMACK-232] - Better handling of Roster error
  • [SMACK-243] - Packet with wrong date format makes Smack to disconnect
  • [SMACK-264] - fix for NPE in SASLMechanism.java
  • +
  • [SMACK-269] - Smack 3.1.0 creates a new chat for every incoming message
  • [SMACK-271] - Deadlock in XMPPConnection while login and parsing stream features
  • [SMACK-275] - Patch: Fix for broken SASL DIGEST-MD5 implementation
  • [SMACK-288] - The parsing of the result for a LeafNode.getItems() call is incorrect. It creates a DefaultPacketExtension instead of an Item for every other item in the result.
  • @@ -191,6 +192,7 @@ hr {
  • [SMACK-308] - Multiple errors in pubsub GetItemsRequest
  • [SMACK-312] - Only fire RosterListener#entriesUpdated for RosterEntries that changed
  • [SMACK-327] - getFeatures() method on DiscoverInfo is improperly set to be package protected instead of public
  • +
  • [SMACK-328] - Number format exception while parsing dates.
  • 3.1.0 -- November 20, 2008

    diff --git a/source/org/jivesoftware/smack/SmackConfiguration.java b/source/org/jivesoftware/smack/SmackConfiguration.java index 4070aa86d..d8beb334c 100644 --- a/source/org/jivesoftware/smack/SmackConfiguration.java +++ b/source/org/jivesoftware/smack/SmackConfiguration.java @@ -44,7 +44,7 @@ import java.util.*; */ public final class SmackConfiguration { - private static final String SMACK_VERSION = "3.2.0 Beta"; + private static final String SMACK_VERSION = "3.2.0 Beta2"; private static int packetReplyTimeout = 5000; private static int keepAliveInterval = 30000; diff --git a/test/org/jivesoftware/smackx/packet/XHTMLExtensionTest.java b/test/org/jivesoftware/smackx/packet/XHTMLExtensionTest.java index 9fb993126..757b085fc 100644 --- a/test/org/jivesoftware/smackx/packet/XHTMLExtensionTest.java +++ b/test/org/jivesoftware/smackx/packet/XHTMLExtensionTest.java @@ -189,7 +189,7 @@ public class XHTMLExtensionTest extends SmackTestCase { // Create an XHTMLExtension and add it to the message XHTMLExtension xhtmlExtension = new XHTMLExtension(); xhtmlExtension.addBody( - "

    impresionante!

    Como Emerson dijo una vez:

    Una consistencia ridícula es el espantajo de mentes pequeñas.

    "); + "

    impresionante!

    Como Emerson dijo una vez:

    Una consistencia ridicula es el espantajo de mentes pequenas.

    "); xhtmlExtension.addBody( "

    awesome!

    As Emerson once said:

    A foolish consistency is the hobgoblin of little minds.

    "); msg.addExtension(xhtmlExtension);