Skip to content

Commit d99a64c

Browse files
Bumped versions for the 1.0.0-M9 release
1 parent 46da615 commit d99a64c

File tree

25 files changed

+26
-25
lines changed
  • benchmarks
  • docs
  • spring-cloud-sleuth-otel-autoconfigure
  • spring-cloud-sleuth-otel-dependencies
  • spring-cloud-sleuth-otel
  • tests
    • common
    • otel
      • spring-cloud-sleuth-instrumentation-annotation-tests
      • spring-cloud-sleuth-instrumentation-async-tests
      • spring-cloud-sleuth-instrumentation-baggage-tests
      • spring-cloud-sleuth-instrumentation-circuitbreaker-tests
      • spring-cloud-sleuth-instrumentation-feign-tests
      • spring-cloud-sleuth-instrumentation-gateway-tests
      • spring-cloud-sleuth-instrumentation-messaging-tests
      • spring-cloud-sleuth-instrumentation-mvc-tests
      • spring-cloud-sleuth-instrumentation-quartz-tests
      • spring-cloud-sleuth-instrumentation-reactor-tests
      • spring-cloud-sleuth-instrumentation-rxjava-tests
      • spring-cloud-sleuth-instrumentation-scheduling-tests
      • spring-cloud-sleuth-instrumentation-webflux-tests
      • spring-cloud-sleuth-multiple-tracers-otel-tests
      • spring-cloud-sleuth-zipkin-tests

25 files changed

+26
-25
lines changed

benchmarks/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<name>Benchmarks</name>
2323
<description>Benchmarks (JMH)</description>
2424
<groupId>org.springframework.cloud</groupId>
25-
<version>1.0.0-SNAPSHOT</version>
25+
<version>1.0.0-M9</version>
2626
<artifactId>otel-benchmarks</artifactId>
2727

2828
<parent>

docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.springframework.cloud</groupId>
2323
<artifactId>spring-cloud-sleuth-otel-parent</artifactId>
24-
<version>1.0.0-SNAPSHOT</version>
24+
<version>1.0.0-M9</version>
2525
<relativePath>..</relativePath>
2626
</parent>
2727
<artifactId>spring-cloud-sleuth-otel-docs</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<modelVersion>4.0.0</modelVersion>
2222

2323
<artifactId>spring-cloud-sleuth-otel-parent</artifactId>
24-
<version>1.0.0-SNAPSHOT</version>
24+
<version>1.0.0-M9</version>
2525
<packaging>pom</packaging>
2626
<name>Spring Cloud Sleuth OTel</name>
2727
<description>Spring Cloud Sleuth OTel</description>

spring-cloud-sleuth-otel-autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<parent>
3232
<groupId>org.springframework.cloud</groupId>
3333
<artifactId>spring-cloud-sleuth-otel-parent</artifactId>
34-
<version>1.0.0-SNAPSHOT</version>
34+
<version>1.0.0-M9</version>
3535
<relativePath>..</relativePath>
3636
</parent>
3737

spring-cloud-sleuth-otel-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<relativePath/>
2727
</parent>
2828
<artifactId>spring-cloud-sleuth-otel-dependencies</artifactId>
29-
<version>1.0.0-SNAPSHOT</version>
29+
<version>1.0.0-M9</version>
3030
<packaging>pom</packaging>
3131
<name>spring-cloud-sleuth-otel-dependencies</name>
3232
<description>Spring Cloud Sleuth OTel Dependencies</description>

spring-cloud-sleuth-otel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.springframework.cloud</groupId>
3030
<artifactId>spring-cloud-sleuth-otel-parent</artifactId>
31-
<version>1.0.0-SNAPSHOT</version>
31+
<version>1.0.0-M9</version>
3232
<relativePath>..</relativePath>
3333
</parent>
3434

spring-cloud-sleuth-otel/src/test/java/org/springframework/cloud/sleuth/otel/propagation/CompositeTextMapPropagatorTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ void extract_onlyBaggage() {
5656

5757
@Test
5858
void should_map_propagaotr_string_class_names_to_actual_classes() {
59-
CompositeTextMapPropagator propagator = new CompositeTextMapPropagator(new StaticListableBeanFactory(), Collections.emptyList());
59+
CompositeTextMapPropagator propagator = new CompositeTextMapPropagator(new StaticListableBeanFactory(),
60+
Collections.emptyList());
6061

6162
SoftAssertions softly = new SoftAssertions();
6263
softly.assertThat(propagator.awsClass()).isEqualTo(AwsXrayPropagator.class.getName());

tests/common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<parent>
3131
<groupId>org.springframework.cloud</groupId>
3232
<artifactId>spring-cloud-sleuth-otel-tests-parent</artifactId>
33-
<version>1.0.0-SNAPSHOT</version>
33+
<version>1.0.0-M9</version>
3434
<relativePath>..</relativePath>
3535
</parent>
3636

tests/otel/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<parent>
3131
<groupId>org.springframework.cloud</groupId>
3232
<artifactId>spring-cloud-sleuth-otel-tests-parent</artifactId>
33-
<version>1.0.0-SNAPSHOT</version>
33+
<version>1.0.0-M9</version>
3434
<relativePath>..</relativePath>
3535
</parent>
3636

tests/otel/spring-cloud-sleuth-instrumentation-annotation-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<parent>
3131
<groupId>org.springframework.cloud</groupId>
3232
<artifactId>spring-cloud-sleuth-otel-tests</artifactId>
33-
<version>1.0.0-SNAPSHOT</version>
33+
<version>1.0.0-M9</version>
3434
<relativePath>..</relativePath>
3535
</parent>
3636

0 commit comments

Comments
 (0)