Skip to content

Commit 3f51cbd

Browse files
committed
Added donation information
1 parent e3fcb31 commit 3f51cbd

File tree

4 files changed

+38
-13
lines changed

4 files changed

+38
-13
lines changed

DONATION.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Donations
2+
3+
I'm always happy for donations - to help with some hosting costs or to just get a beer & relax.
4+
5+
As I'm a firm believer in OSS I nevertheless have to pay once in a while for stuff - therefore feel free to contribute a bit:
6+
7+
## Patreon
8+
9+
[![patreon](https://c5.patreon.com/external/logo/become_a_patron_button.png)](https://www.patreon.com/derjust86)
10+
11+
## Liberapay
12+
[![liberapay](https://liberapay.com/assets/widgets/donate.svg)](https://en.liberapay.com/spring-data-dynamodb/donate)
13+
14+
## Paypal
15+
16+
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CWVWF9DD73J5S)
17+
18+
## Beer
19+
20+
Send me a message if you are around in New York City.

README.md

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[![codecov.io](https://codecov.io/github/derjust/spring-data-dynamodb/coverage.svg?branch=master)](https://codecov.io/github/derjust/spring-data-dynamodb?branch=master) [![Build Status](https://travis-ci.org/derjust/spring-data-dynamodb.svg?branch=master)](https://travis-ci.org/derjust/spring-data-dynamodb)
22
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.derjust/spring-data-dynamodb/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.derjust/spring-data-dynamodb)
3+
[![Generic badge](https://img.shields.io/badge/Donate-%F0%9F%92%B8-ffffff.svg)](DONATION.md)
34

4-
# Spring Data DynamoDB #
55

6-
The primary goal of the [Spring Data](http://www.springsource.org/spring-data) project is to make it easier to build Spring-powered applications that use data access technologies. This module deals with enhanced support for [Amazon DynamoDB](https://aws.amazon.com/dynamodb/) based data access layers.
6+
# Spring Data DynamoDB #
7+
8+
The primary goal of the [Spring® Data](http://www.springsource.org/spring-data) project is to make it easier to build Spring-powered applications that use data access technologies. This module deals with enhanced support for [Amazon DynamoDB](https://aws.amazon.com/dynamodb/) based data access layers.
79

810
## Supported Features ##
911

@@ -45,7 +47,7 @@ Download the JAR though [Maven](http://mvnrepository.com/artifact/com.github.der
4547
<dependency>
4648
<groupId>com.github.derjust</groupId>
4749
<artifactId>spring-data-dynamodb</artifactId>
48-
<version>5.0.0</version>
50+
<version>5.0.1</version>
4951
</dependency>
5052
```
5153

@@ -59,7 +61,7 @@ repositories {
5961
dependencies {
6062
compile group: 'com.github.derjust',
6163
name: 'spring-data-dynamodb',
62-
version: '5.0.0'
64+
version: '5.0.1'
6365
}
6466
```
6567

@@ -283,11 +285,5 @@ Check `pom.xml` for the proper `<version />`, afterwards execute
283285
$ mvn release:prepare && mvn release:perform
284286
```
285287

286-
which will tag, build, test and upload the artifacts to Sonatype's OSS staging area.
287-
288-
Then visit
289-
https://oss.sonatype.org/#stagingRepositories
290-
and _close_ the staging repository.
291-
292-
Afterwards _release_ the staging repository. This will sync with Maven Central (give it some hours to become visible via http://search.maven.org/).
293-
288+
which will tag, build, test and upload the artifacts to Sonatype's OSS staging area & closes the staging repository.
289+
Maven Central synchronization usually takes ~15 minutes.

pom.xml

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>spring-data-dynamodb</artifactId>
66
<version>5.0.1-SNAPSHOT</version>
77
<name>Spring Data DynamoDB</name>
8-
<description>The primary goal of the Spring Data project is to make it easier to build Spring-powered applications that use data access technologies. This module deals with enhanced support for Amazon DynamoDB based data access layers.</description>
8+
<description>The primary goal of the Spring® Data project is to make it easier to build Spring-powered applications that use data access technologies. This module deals with enhanced support for Amazon DynamoDB based data access layers.</description>
99
<url>http://github.com/derjust/spring-data-dynamodb</url>
1010

1111
<licenses>
@@ -512,6 +512,10 @@
512512
</reporting>
513513

514514
<distributionManagement>
515+
<site>
516+
<id>website</id>
517+
<url>https://github.com/derjust/spring-data-dynamodb/</url>
518+
</site>
515519
<snapshotRepository>
516520
<id>ossrh</id>
517521
<url>https://oss.sonatype.org/content/repositories/snapshots</url>

src/changes/changes.xml

+5
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,10 @@
2222
Added Spring 5 / Spring-Data Kay support
2323
</action>
2424
</release>
25+
<release version="4.5.1" date="2017-12-19">
26+
<action dev="Michael Wyraz" type="fix" issue="92">
27+
Add constructor to DynamoDBTemplate that takes a preconfigured DynamoDBMapper
28+
</action>
29+
</release>
2530
</body>
2631
</document>

0 commit comments

Comments
 (0)