Skip to content

Commit

Permalink
Release 0.12.5 of the Amazon Kinesis Producer Library
Browse files Browse the repository at this point in the history
* Remove requirement on glibc 2.14
  * PR awslabs#108
  • Loading branch information
pfifer committed May 22, 2017
1 parent afb2422 commit 60698b9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ For detailed information and installation instructions, see the article [Develop

## Release Notes

### 0.12.5

#### C++ Core

* Remove requirement on glibc 2.14
* [PR #108](https://github.com/awslabs/amazon-kinesis-producer/pull/108)

### 0.12.4

#### Java
Expand Down
2 changes: 1 addition & 1 deletion aws/kinesis/core/kinesis_producer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ struct EndpointConfiguration {
kinesis_endpoint_(kinesis_endpoint), cloudwatch_endpoint_(cloudwatch_endpoint) {}
};

const constexpr char* kVersion = "0.12.4";
const constexpr char* kVersion = "0.12.5";
const std::unordered_map< std::string, EndpointConfiguration > kRegionEndpointOverride = {
{ "cn-north-1", { "kinesis.cn-north-1.amazonaws.com.cn", "monitoring.cn-north-1.amazonaws.com.cn" } }
};
Expand Down
2 changes: 1 addition & 1 deletion java/amazon-kinesis-producer-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-producer</artifactId>
<version>0.12.4</version>
<version>0.12.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
2 changes: 1 addition & 1 deletion java/amazon-kinesis-producer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-producer</artifactId>
<version>0.12.5-SNAPSHOT</version>
<version>0.12.5</version>
<name>Amazon Kinesis Producer Library</name>

<scm>
Expand Down

0 comments on commit 60698b9

Please sign in to comment.