Skip to content

Commit 5c7b1fd

Browse files
authored
Prepare for 3.1.0 release (#303)
1 parent 1107859 commit 5c7b1fd

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,10 @@ all languages.
150150
* The [Amazon Kinesis Forum][kinesis-forum]
151151

152152
## Release Notes
153+
### Release 3.1.0 (July 10, 2025)
154+
* [KCL 3.1.1 Changelog](https://github.com/awslabs/amazon-kinesis-client/blob/v3.1.1/CHANGELOG.md) Upgrade KCL and KCL-Multilang dependencies from 3.0.3 to 3.1.1
155+
* [#301](https://github.com/awslabs/amazon-kinesis-client-python/pull/301) Add multi-lang support for leaseAssignmentIntervalMillis
156+
153157
### Release 3.0.5 (June 6, 2025)
154158
* [#274](https://github.com/awslabs/amazon-kinesis-client-python/pull/274) Add ability to set mvn repo search URL with a unique ENV Variable
155159
* [#279](https://github.com/awslabs/amazon-kinesis-client-python/pull/279) Create sample KCL build tests

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<properties>
55
<awssdk.version>2.25.64</awssdk.version>
6-
<kcl.version>3.0.3</kcl.version>
6+
<kcl.version>3.1.1</kcl.version>
77
<netty.version>4.1.118.Final</netty.version>
88
<netty-reactive.version>2.0.6</netty-reactive.version>
99
<fasterxml-jackson.version>2.13.5</fasterxml-jackson.version>

samples/sample.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ regionName = us-east-1
5151

5252
# A worker id that uniquely identifies this worker among all workers using the same applicationName
5353
# If this isn't provided a MultiLangDaemon instance will assign a unique workerId to itself.
54-
#workerId =
54+
#workerId =
5555

5656
# Shard sync interval in milliseconds - e.g. wait for this long between shard sync tasks.
5757
#shardSyncIntervalMillis = 60000

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
PACKAGE_NAME = 'amazon_kclpy'
4444
JAR_DIRECTORY = os.path.join(PACKAGE_NAME, 'jars')
45-
PACKAGE_VERSION = '3.0.5'
45+
PACKAGE_VERSION = '3.1.0'
4646
PYTHON_REQUIREMENTS = [
4747
'boto3',
4848
# argparse is part of python2.7 but must be declared for python2.6

0 commit comments

Comments
 (0)