Skip to content

Commit 7b87e22

Browse files
committed
Bump version
1 parent 6755355 commit 7b87e22

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
=== 1.2.8 2013-08-12
2+
3+
* Add support for unsetting attributes by updating with a null value.
4+
Setting properties to a blank string is now an error.
5+
* Attempting to set an object's id is now an error.
6+
17
=== 1.2.7 2013-07-31
28

39
* Enable createCard() to use a token

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add this dependency to your project's POM:
1717
<dependency>
1818
<groupId>com.stripe</groupId>
1919
<artifactId>stripe-java</artifactId>
20-
<version>1.2.7</version>
20+
<version>1.2.8</version>
2121
</dependency>
2222

2323
### Others

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.7
1+
1.2.8

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.stripe</groupId>
55
<artifactId>stripe-java</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.2.7</version>
7+
<version>1.2.8</version>
88
<name>stripe-java</name>
99
<url>https://github.com/stripe/stripe-java</url>
1010
<dependencies>

src/main/java/com/stripe/Stripe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public abstract class Stripe
44
{
55
public static final String API_BASE = "https://api.stripe.com";
6-
public static final String VERSION = "1.2.7";
6+
public static final String VERSION = "1.2.8";
77
public static String apiKey;
88
public static String apiVersion;
99
}

0 commit comments

Comments
 (0)