Update release version due to backport

See gh-29790
See gh-29902
This commit is contained in:
Sam Brannen
2023-01-31 10:00:18 +01:00
parent 89c7c6e9dd
commit ebe717ff6c
3 changed files with 4 additions and 4 deletions

View File

@@ -114,7 +114,7 @@ public @interface JmsListener {
/**
* The name for the durable subscription, if any.
* <p>As of Spring Framework 6.0.5, if an explicit subscription name is not
* <p>As of Spring Framework 5.3.26, if an explicit subscription name is not
* specified, a default subscription name will be generated based on the fully
* qualified name of the annotated listener method &mdash; for example,
* {@code "org.example.jms.ProductListener.processRequest"} for a

View File

@@ -43,7 +43,7 @@ import org.springframework.util.Assert;
* are provided as additional arguments so that these can be injected as
* method arguments if necessary.
*
* <p>As of Spring Framework 6.0.5, {@code MessagingMessageListenerAdapter} implements
* <p>As of Spring Framework 5.3.26, {@code MessagingMessageListenerAdapter} implements
* {@link SubscriptionNameProvider} in order to provide a meaningful default
* subscription name. See {@link #getSubscriptionName()} for details.
*
@@ -150,7 +150,7 @@ public class MessagingMessageListenerAdapter extends AbstractAdaptableMessageLis
* {@code getClass().getName()}, which aligns with the default behavior of
* {@link org.springframework.jms.listener.AbstractMessageListenerContainer}.</li>
* </ul>
* @since 6.0.5
* @since 5.3.26
* @see SubscriptionNameProvider#getSubscriptionName()
*/
@Override

View File

@@ -38,7 +38,7 @@ import static org.junit.jupiter.params.provider.Arguments.arguments;
* except that these tests have a different scope and do not use mocks.
*
* @author Sam Brannen
* @since 6.0.5
* @since 5.3.26
* @see MessagingMessageListenerAdapterTests
*/
class MessagingMessageListenerAdapterIntegrationTests {