Skip to content

Commit af72628

Browse files
committed
Correct 1.3 since tags to 1.3.0
1 parent f17938e commit af72628

23 files changed

+27
-27
lines changed

spring-graphql/src/main/java/org/springframework/graphql/client/AbstractGraphQlClientSyncBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
*
5252
* @param <B> the type of builder
5353
* @author Rossen Stoyanchev
54-
* @since 1.3
54+
* @since 1.3.0
5555
* @see AbstractDelegatingGraphQlClient
5656
*/
5757
public abstract class AbstractGraphQlClientSyncBuilder<B extends AbstractGraphQlClientSyncBuilder<B>>

spring-graphql/src/main/java/org/springframework/graphql/client/DgsGraphQlClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* </pre>
4848
*
4949
* @author Rossen Stoyanchev
50-
* @since 1.3
50+
* @since 1.3.0
5151
*/
5252
public final class DgsGraphQlClient {
5353

spring-graphql/src/main/java/org/springframework/graphql/client/GraphQlClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ interface RequestSpec {
256256
* @return a spec with decoding options
257257
* @throws FieldAccessException if the field has any field errors,
258258
* including errors at, above or below the field path.
259-
* @since 1.3
259+
* @since 1.3.0
260260
*/
261261
RetrieveSyncSpec retrieveSync(String path);
262262

@@ -291,7 +291,7 @@ interface RequestSpec {
291291
* @return a {@code ClientGraphQlResponse} for further decoding of the response.
292292
* @throws GraphQlTransportException in case of errors due to transport or
293293
* other issues related to encoding and decoding the request and response.
294-
* @since 1.3
294+
* @since 1.3.0
295295
*/
296296
ClientGraphQlResponse executeSync();
297297

spring-graphql/src/main/java/org/springframework/graphql/client/HttpSyncGraphQlClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* execution chain.
3131
*
3232
* @author Rossen Stoyanchev
33-
* @since 1.3
33+
* @since 1.3.0
3434
* @see SyncGraphQlTransport
3535
*/
3636
public interface HttpSyncGraphQlClient extends GraphQlClient {

spring-graphql/src/main/java/org/springframework/graphql/client/SyncGraphQlClientInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* chain with a {@link SyncGraphQlTransport}.
2222
*
2323
* @author Rossen Stoyanchev
24-
* @since 1.3
24+
* @since 1.3.0
2525
*/
2626
public interface SyncGraphQlClientInterceptor {
2727

spring-graphql/src/main/java/org/springframework/graphql/client/SyncGraphQlTransport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Contract for blocking execution of GraphQL requests over some transport.
2525
*
2626
* @author Rossen Stoyanchev
27-
* @since 1.3
27+
* @since 1.3.0
2828
* @see GraphQlClient.SyncBuilder
2929
*/
3030
public interface SyncGraphQlTransport {

spring-graphql/src/main/java/org/springframework/graphql/client/WebSocketGraphQlClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ interface Builder<B extends Builder<B>> extends WebGraphQlClient.Builder<B> {
9494
* Configure how frequently to send ping messages.
9595
* <p>By default, this is not set, and ping messages are not sent.
9696
* @param keepAlive the value to use
97-
* @since 1.3
97+
* @since 1.3.0
9898
*/
9999
Builder<B> keepAlive(Duration keepAlive);
100100

spring-graphql/src/main/java/org/springframework/graphql/data/GraphQlArgumentBinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public Object bind(
153153
* @param isOmitted {@code true} if the argument was omitted from the input
154154
* and {@code false} if it was provided, but possibly {@code null}
155155
* @param targetType the type of Object to create
156-
* @since 1.3
156+
* @since 1.3.0
157157
*/
158158
@Nullable
159159
public Object bind(

spring-graphql/src/main/java/org/springframework/graphql/data/federation/EntityMapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Annotation for mapping a handler method to a federated schema type.
2929
*
3030
* @author Rossen Stoyanchev
31-
* @since 1.3
31+
* @since 1.3.0
3232
*/
3333
@Target({ElementType.TYPE, ElementType.METHOD})
3434
@Retention(RetentionPolicy.RUNTIME)

spring-graphql/src/main/java/org/springframework/graphql/data/federation/FederationSchemaFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
* and plugged in via {@link SchemaResourceBuilder#schemaFactory(BiFunction)}.
6060
*
6161
* @author Rossen Stoyanchev
62-
* @since 1.3
62+
* @since 1.3.0
6363
* @see Federation#transform(TypeDefinitionRegistry, RuntimeWiring)
6464
*
6565
*/

0 commit comments

Comments
 (0)