Skip to content

Commit

Permalink
fix!: Remove the MostRecentProvider.
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Removes the MostRecentProvider, which is replaced by the CachingMostRecentProvider.
  • Loading branch information
lavaleri committed Feb 4, 2021
1 parent 7de5f5a commit 3b71a24
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 763 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## 2.0.0 -- 2021-02-04
Removes MostRecentProvider.
MostRecentProvider is replaced by CachingMostRecentProvider as of 1.15.0.

## 1.15.0 -- 2021-02-04
Adds the CachingMostRecentProvider and deprecates MostRecentProvider.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ You can download the [latest snapshot release][download] or pick it up from Mave
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-dynamodb-encryption-java</artifactId>
<version>1.15.0</version>
<version>2.0.0</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<parent>
<groupId>software.amazon.cryptools</groupId>
<artifactId>dynamodbencryptionclient-pom</artifactId>
<version>1.15.0</version>
<version>2.0.0</version>
</parent>

<artifactId>dynamodbencryptionclient-sdk1examples</artifactId>
<packaging>jar</packaging>
<version>1.15.0</version>
<version>2.0.0</version>
<name>aws-dynamodb-encryption-java :: SDK1 Examples</name>
<description>Examples for AWS DynamoDB Encryption Client for AWS Java SDK v1</description>

Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-dynamodb-encryption-java</artifactId>
<version>1.15.0</version>
<version>2.0.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>software.amazon.cryptools</groupId>
<artifactId>dynamodbencryptionclient-pom</artifactId>
<version>1.15.0</version>
<version>2.0.0</version>
<packaging>pom</packaging>

<name>aws-dynamodb-encryption-java :: POM</name>
Expand Down
2 changes: 1 addition & 1 deletion sdk1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.amazonaws</groupId>
<artifactId>aws-dynamodb-encryption-java</artifactId>
<version>1.15.0</version>
<version>2.0.0</version>
<packaging>jar</packaging>
<name>aws-dynamodb-encryption-java :: SDK1</name>
<description>AWS DynamoDB Encryption Client for AWS Java SDK v1</description>
Expand Down

This file was deleted.

Loading

0 comments on commit 3b71a24

Please sign in to comment.