Skip to content

Commit

Permalink
Merge pull request #143 from socrata/cmu/datasync-release-changes
Browse files Browse the repository at this point in the history
update pom, README and version to 1.7.2
  • Loading branch information
catstavi authored Aug 4, 2016
2 parents 567a90a + b1c6572 commit f9bd206
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ 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.7.1-jar-with-dependencies.jar
java -jar DataSync-1.7.2-jar-with-dependencies.jar
```

### Java SDK
Expand Down
7 changes: 6 additions & 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.7.1</version>
<version>1.7.2</version>
<developers>
<developer>
<name>Ayn Leslie-Cook</name>
Expand All @@ -15,6 +15,11 @@
<email>[email protected]</email>
<organization>Socrata</organization>
</developer>
<developer>
<name>Cate Uselton</name>
<email>[email protected]</email>
<organization>Socrata</organization>
</developer>
<developer>
<name>Louis Fettet</name>
<email>[email protected]</email>
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/com/socrata/datasync/VersionProviderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void testVersionMajorNumbers() {

@Test
public void testGetLatestVersion() throws URISyntaxException {
TestCase.assertEquals("1.7.1", VersionProvider.getLatestVersion());
TestCase.assertEquals("1.7.2", VersionProvider.getLatestVersion());
}

@Test
Expand All @@ -48,6 +48,6 @@ public void testIsLatestVersion() throws URISyntaxException {

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

0 comments on commit f9bd206

Please sign in to comment.