Skip to content
This repository has been archived by the owner on Jun 16, 2019. It is now read-only.

Commit

Permalink
1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Feb 27, 2017
1 parent c36c53c commit 5fda57a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The dependency is available via jCenter.
```Gradle
dependencies {
...
compile 'com.afollestad:ason:1.4.2'
compile 'com.afollestad:ason:1.4.3'
}
```

Expand All @@ -64,7 +64,7 @@ Since Android includes `org.json` classes, you'll want to exclude the copies pro
```Gradle
dependencies {
...
compile('com.afollestad:ason:1.4.2') {
compile('com.afollestad:ason:1.4.3') {
exclude group: 'org.json', module: 'json'
}
}
Expand All @@ -78,7 +78,7 @@ Android, make sure you also exclude org.json as shown in the section above.*
```Gradle
dependencies {
...
compile('com.afollestad:ason:1.4.2') {
compile('com.afollestad:ason:1.4.3') {
exclude group: 'com.intellij', module: 'annotations'
}
}
Expand All @@ -90,7 +90,7 @@ dependencies {
<dependency>
<groupId>com.afollestad</groupId>
<artifactId>ason</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
<type>pom</type>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.afollestad'
version '1.4.2'
version '1.4.3'

apply plugin: 'java'
apply plugin: 'idea'
Expand Down Expand Up @@ -34,7 +34,7 @@ publish {
userOrg = 'drummer-aidan'
groupId = 'com.afollestad'
artifactId = 'ason'
publishVersion = '1.4.2'
publishVersion = '1.4.3'
website = 'https://github.com/afollestad/ason'
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/afollestad/ason/PerfTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public static void main(String[] args) {
out.println("Benchmarking, please wait...");

long start = System.currentTimeMillis();
for (int i = 1; i < 6000000; i *= 2) {
for (int i = 1; i < 7000000; i *= 2) {
asonTest(i);
gsonTest(i);
}
Expand Down

0 comments on commit 5fda57a

Please sign in to comment.