Skip to content

Commit

Permalink
Version 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Urmila Nadkarni committed Jan 5, 2017
1 parent 2f8bbf2 commit c269b9e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
Socrata Datasync
================

Last updated: December 6, 2016

Authors: [Adrian Laurenzi](http://www.github.com/alaurenz) & [Louis Fettet](http://www.github.com/LouisFettet)
Last updated: January 5, 2017

Looking for the latest release? Get it here: https://github.com/socrata/datasync/releases

Expand Down Expand Up @@ -54,7 +52,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.4-jar-with-dependencies.jar
java -jar DataSync-1.8.0-jar-with-dependencies.jar
```

### Java SDK
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>DataSync</groupId>
<artifactId>DataSync</artifactId>
<version>1.7.4</version>
<version>1.8.0</version>
<developers>
<developer>
<name>Ayn Leslie-Cook</name>
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.4", VersionProvider.getLatestVersion());
TestCase.assertEquals("1.8.0", VersionProvider.getLatestVersion());
}

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

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

0 comments on commit c269b9e

Please sign in to comment.