Skip to content

Commit b27359e

Browse files
authored
Bump library version to 1.1.20 (awslabs#345)
1 parent 2c79afe commit b27359e

File tree

15 files changed

+22
-19
lines changed

15 files changed

+22
-19
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,6 @@ GlueSchemaRegistryKafkaSerializer/GlueSchemaRegistryKafkaDeserializer.
8181

8282
## Release 1.1.19
8383
* Upgraded dependency versions to remove ION dependencies
84+
85+
## Release 1.1.20
86+
* Upgrade the dependency version to remove commons:compress dependency

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The recommended way to use the AWS Glue Schema Registry Library for Java is to c
6060
<dependency>
6161
<groupId>software.amazon.glue</groupId>
6262
<artifactId>schema-registry-serde</artifactId>
63-
<version>1.1.19</version>
63+
<version>1.1.20</version>
6464
</dependency>
6565
```
6666
### Code Example
@@ -490,7 +490,7 @@ It should look like this
490490
* If using bash, run the below commands to set-up your CLASSPATH in your bash_profile. (For any other shell, update the environment accordingly.)
491491
```bash
492492
echo 'export GSR_LIB_BASE_DIR=<>' >>~/.bash_profile
493-
echo 'export GSR_LIB_VERSION=1.1.19' >>~/.bash_profile
493+
echo 'export GSR_LIB_VERSION=1.1.20' >>~/.bash_profile
494494
echo 'export KAFKA_HOME=<your kafka installation directory>' >>~/.bash_profile
495495
echo 'export CLASSPATH=$CLASSPATH:$GSR_LIB_BASE_DIR/avro-kafkaconnect-converter/target/schema-registry-kafkaconnect-converter-$GSR_LIB_VERSION.jar:$GSR_LIB_BASE_DIR/common/target/schema-registry-common-$GSR_LIB_VERSION.jar:$GSR_LIB_BASE_DIR/avro-serializer-deserializer/target/schema-registry-serde-$GSR_LIB_VERSION.jar' >>~/.bash_profile
496496
source ~/.bash_profile
@@ -549,7 +549,7 @@ It should look like this
549549
<dependency>
550550
<groupId>software.amazon.glue</groupId>
551551
<artifactId>schema-registry-kafkastreams-serde</artifactId>
552-
<version>1.1.19</version>
552+
<version>1.1.20</version>
553553
</dependency>
554554
```
555555
@@ -587,7 +587,7 @@ repository for the latest support: [Avro SerializationSchema and Deserialization
587587
<dependency>
588588
<groupId>software.amazon.glue</groupId>
589589
<artifactId>schema-registry-flink-serde</artifactId>
590-
<version>1.1.19</version>
590+
<version>1.1.20</version>
591591
</dependency>
592592
```
593593
### Code Example

avro-flink-serde/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ inside Amazon VPC.](https://docs.aws.amazon.com/kinesisanalytics/latest/java/vpc
2020
<dependency>
2121
<groupId>software.amazon.glue</groupId>
2222
<artifactId>schema-registry-flink-serde</artifactId>
23-
<version>1.1.19/version>
23+
<version>1.1.20/version>
2424
</dependency>
2525
```
2626
### Code Example
@@ -67,4 +67,4 @@ inside Amazon VPC.](https://docs.aws.amazon.com/kinesisanalytics/latest/java/vpc
6767
GlueSchemaRegistryAvroDeserializationSchema.forGeneric(schema, configs),
6868
properties);
6969
DataStream<GenericRecord> stream = env.addSource(consumer);
70-
```
70+
```

avro-flink-serde/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<groupId>software.amazon.glue</groupId>
2323
<artifactId>schema-registry-flink-serde</artifactId>
24-
<version>1.1.19</version>
24+
<version>1.1.20</version>
2525
<name>AWS Glue Schema Registry Flink Avro Serialization Deserialization Schema</name>
2626
<description>The AWS Glue Schema Registry Library for Apache Flink enables Java developers to easily integrate
2727
their Apache Flink applications with AWS Glue Schema Registry
@@ -66,7 +66,7 @@
6666
<dependency>
6767
<groupId>software.amazon.glue</groupId>
6868
<artifactId>schema-registry-serde</artifactId>
69-
<version>1.1.19</version>
69+
<version>1.1.20</version>
7070
</dependency>
7171
<dependency>
7272
<groupId>org.projectlombok</groupId>

avro-kafkaconnect-converter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<parent>
3333
<groupId>software.amazon.glue</groupId>
3434
<artifactId>schema-registry-parent</artifactId>
35-
<version>1.1.19</version>
35+
<version>1.1.20</version>
3636
<relativePath>../pom.xml</relativePath>
3737
</parent>
3838

build-tools/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.glue</groupId>
2424
<artifactId>schema-registry-parent</artifactId>
25-
<version>1.1.19</version>
25+
<version>1.1.20</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.glue</groupId>
2424
<artifactId>schema-registry-parent</artifactId>
25-
<version>1.1.19</version>
25+
<version>1.1.20</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<parent>
3232
<groupId>software.amazon.glue</groupId>
3333
<artifactId>schema-registry-parent</artifactId>
34-
<version>1.1.19</version>
34+
<version>1.1.20</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

integration-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<parent>
3232
<groupId>software.amazon.glue</groupId>
3333
<artifactId>schema-registry-parent</artifactId>
34-
<version>1.1.19</version>
34+
<version>1.1.20</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

jsonschema-kafkaconnect-converter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<parent>
3333
<groupId>software.amazon.glue</groupId>
3434
<artifactId>schema-registry-parent</artifactId>
35-
<version>1.1.19</version>
35+
<version>1.1.20</version>
3636
<relativePath>../pom.xml</relativePath>
3737
</parent>
3838

kafkastreams-serde/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<parent>
3333
<groupId>software.amazon.glue</groupId>
3434
<artifactId>schema-registry-parent</artifactId>
35-
<version>1.1.19</version>
35+
<version>1.1.20</version>
3636
<relativePath>../pom.xml</relativePath>
3737
</parent>
3838

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<groupId>software.amazon.glue</groupId>
2323
<artifactId>schema-registry-parent</artifactId>
24-
<version>1.1.19</version>
24+
<version>1.1.20</version>
2525
<packaging>pom</packaging>
2626
<name>AWS Glue Schema Registry Library</name>
2727
<description>The AWS Glue Schema Registry Library for Java enables Java developers to easily integrate their

protobuf-kafkaconnect-converter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.glue</groupId>
2424
<artifactId>schema-registry-parent</artifactId>
25-
<version>1.1.19</version>
25+
<version>1.1.20</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

serializer-deserializer-msk-iam/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<parent>
3434
<groupId>software.amazon.glue</groupId>
3535
<artifactId>schema-registry-parent</artifactId>
36-
<version>1.1.19</version>
36+
<version>1.1.20</version>
3737
<relativePath>../pom.xml</relativePath>
3838
</parent>
3939

serializer-deserializer/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<parent>
3333
<groupId>software.amazon.glue</groupId>
3434
<artifactId>schema-registry-parent</artifactId>
35-
<version>1.1.19</version>
35+
<version>1.1.20</version>
3636
<relativePath>../pom.xml</relativePath>
3737
</parent>
3838

0 commit comments

Comments
 (0)