Skip to content

Commit 2773a53

Browse files
committed
docs: Update README, Changelog and DynamoDB dependencies
1 parent ea02978 commit 2773a53

File tree

3 files changed

+11
-17
lines changed

3 files changed

+11
-17
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [0.9.6] - 2020-11-13
10+
### Changed
11+
- add getter for `DynamoCacheWriter` and `DynamoSerializer` in `DynamoCache` [@derXear](https://github.com/derXear)
12+
- update Amazon DynamoDB dependencies [@derXear](https://github.com/derXear)
13+
914
## [0.9.5] - 2020-03-12
1015
### Changed
1116
- the `DynamoDB::CreateTable` permission is not required anymore if the table already exist,
@@ -31,7 +36,8 @@ instead at least `DynamoDB::DescribeTable` is necessary [@derXear](https://githu
3136
### Added
3237
- initial code base by [@derXear](https://github.com/derXear)
3338

34-
[Unreleased]: https://github.com/bad-opensource/spring-cache-dynamodb/compare/v0.9.5...HEAD
39+
[Unreleased]: https://github.com/bad-opensource/spring-cache-dynamodb/compare/v0.9.6...HEAD
40+
[0.9.6]: https://github.com/bad-opensource/spring-cache-dynamodb/releases/tag/v0.9.5...v0.9.6
3541
[0.9.5]: https://github.com/bad-opensource/spring-cache-dynamodb/releases/tag/v0.9.4...v0.9.5
3642
[0.9.4]: https://github.com/bad-opensource/spring-cache-dynamodb/releases/tag/v0.9.3...v0.9.4
3743
[0.9.3]: https://github.com/bad-opensource/spring-cache-dynamodb/releases/tag/v0.9.2...v0.9.3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To integrate this Git repository into your project, simply add the maven depende
1414
<dependency>
1515
<groupId>com.dasburo</groupId>
1616
<artifactId>spring-cache-dynamodb</artifactId>
17-
<version>0.9.5</version>
17+
<version>0.9.6</version>
1818
</dependency>
1919
```
2020

pom.xml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>com.dasburo</groupId>
1313
<artifactId>spring-cache-dynamodb</artifactId>
14-
<version>0.9.5</version>
14+
<version>0.9.6</version>
1515

1616
<name>Amazon DynamoDB for Spring Cache</name>
1717
<description>Spring Cache implementation based on Amazon DynamoDB</description>
@@ -70,25 +70,13 @@
7070
<maven.compiler.target>1.8</maven.compiler.target>
7171
<project.scm.id>github</project.scm.id>
7272

73-
<version.dynamodb.local>1.11.477</version.dynamodb.local>
74-
<version.dynamodb.java.sdk>1.11.623</version.dynamodb.java.sdk>
73+
<version.dynamodb.local>1.13.5</version.dynamodb.local>
74+
<version.dynamodb.java.sdk>1.11.899</version.dynamodb.java.sdk>
7575
<version.dynamodb.lock.client>1.1.0</version.dynamodb.lock.client>
76-
<!--<version.spring.data.commons>2.1.9.RELEASE</version.spring.data.commons>-->
77-
<!--<version.spring.dao>2.0.8</version.spring.dao>-->
7876
</properties>
7977

8078
<dependencyManagement>
8179
<dependencies>
82-
<!--<dependency>-->
83-
<!--<groupId>org.springframework.data</groupId>-->
84-
<!--<artifactId>spring-data-commons</artifactId>-->
85-
<!--<version>${version.spring.data.commons}</version>-->
86-
<!--</dependency>-->
87-
<!--<dependency>-->
88-
<!--<groupId>org.springframework</groupId>-->
89-
<!--<artifactId>spring-dao</artifactId>-->
90-
<!--<version>${version.spring.dao}</version>-->
91-
<!--</dependency>-->
9280
<dependency>
9381
<groupId>com.amazonaws</groupId>
9482
<artifactId>aws-java-sdk-dynamodb</artifactId>

0 commit comments

Comments
 (0)