Skip to content

Commit

Permalink
Merge pull request #126 from socrata/mb/update-datasync-for-1-7
Browse files Browse the repository at this point in the history
update datasync in preparation for releasing 1.7
  • Loading branch information
catstavi committed Apr 1, 2016
2 parents 382fcd4 + a697c02 commit 70ff2ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ mvn clean compile -Dmaven.test.skip=true assembly:single
This puts the JAR file into the "target" directory inside the repo. So to open DataSync, simply:
```
cd target
java -jar DataSync-1.6.2-jar-with-dependencies.jar
java -jar DataSync-1.7-jar-with-dependencies.jar
```

### Java SDK

DataSync can be used as a Java SDK, for detailed documentation refer to:
DataSync can be used as a Java SDK, for detailed documentation refer to:
[http://socrata.github.io/datasync/guides/datasync-library-sdk.html](http://socrata.github.io/datasync/guides/datasync-library-sdk.html)
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>DataSync</groupId>
<artifactId>DataSync</artifactId>
<version>1.6.2</version>
<version>1.7</version>
<developers>
<developer>
<name>Ayn Leslie-Cook</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ public void testIsLatestVersion() throws URISyntaxException {

@Test
public void testGetThisVersion() {
TestCase.assertEquals("1.6.2", VersionProvider.getThisVersion());
TestCase.assertEquals("1.7", VersionProvider.getThisVersion());
}
}

0 comments on commit 70ff2ee

Please sign in to comment.