Skip to content

Commit 4d79f0c

Browse files
committed
Prepare for 1.0.0
1 parent 91228c6 commit 4d79f0c

4 files changed

Lines changed: 13 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
CHANGELOG
22
=========
33

4-
0.5.1
4+
1.0.0 (2016-09-16)
55
------------------
66

7+
* First production release.
8+
* Updated dependencies.
79
* Added the following new values to the `Payment.Processor` enum:
810
`CONCEPT_PAYMENTS`, `ECOMM365`, `ORANGEPAY`, and `PACNET_SERVICES`.
911

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
# MaxMind minFraud Score, Insights, and Factors Java API
22

3-
## Beta Note ##
4-
5-
This is a beta release. The API may change before the first production
6-
release.
7-
8-
You may find information on the changes in minFraud Score, Insights, and Factors
9-
in our [What's New
10-
documentation](https://dev.maxmind.com/minfraud/whats-new-in-minfraud-score-and-minfraud-insights/).
11-
123
## Description ##
134

145
This package provides an API for the [MaxMind minFraud Score, Insights, and
@@ -27,6 +18,11 @@ To do this, add the dependency to your pom.xml:
2718
</dependency>
2819
```
2920

21+
## API Documentation ##
22+
23+
API documentation is viewable on our [GitHub
24+
Page](http://maxmind.github.io/minfraud-api-java/) under the API tab.
25+
3026
## Usage ##
3127

3228
To use this API, first create a new `WebServiceClient` object. The constructor

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@
4242
<dependency>
4343
<groupId>com.fasterxml.jackson.core</groupId>
4444
<artifactId>jackson-core</artifactId>
45-
<version>2.7.4</version>
45+
<version>2.8.2</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>com.fasterxml.jackson.core</groupId>
4949
<artifactId>jackson-databind</artifactId>
50-
<version>2.7.4</version>
50+
<version>2.8.2</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>com.fasterxml.jackson.core</groupId>
5454
<artifactId>jackson-annotations</artifactId>
55-
<version>2.7.4</version>
55+
<version>2.8.2</version>
5656
</dependency>
5757
<dependency>
5858
<groupId>com.maxmind.geoip2</groupId>
5959
<artifactId>geoip2</artifactId>
60-
<version>2.7.0</version>
60+
<version>2.8.0</version>
6161
<exclusions>
6262
<exclusion>
6363
<groupId>com.google.http-client</groupId>
@@ -102,7 +102,7 @@
102102
<dependency>
103103
<groupId>com.fasterxml.jackson.jr</groupId>
104104
<artifactId>jackson-jr-objects</artifactId>
105-
<version>2.7.4</version>
105+
<version>2.8.2</version>
106106
<scope>test</scope>
107107
</dependency>
108108
<dependency>

src/main/java/com/maxmind/minfraud/request/Event.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import com.fasterxml.jackson.annotation.JsonProperty;
44
import com.maxmind.minfraud.AbstractModel;
55

6-
import java.text.SimpleDateFormat;
76
import java.util.Date;
87

98
public final class Event extends AbstractModel {

0 commit comments

Comments
 (0)