Skip to content

Commit

Permalink
Merge branch 'rel_1.7.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Trey Causey committed Dec 6, 2016
2 parents 1af8cbe + a7fa8c5 commit 45f2302
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
@@ -1,7 +1,7 @@
Socrata Datasync
================

Last updated: December 1, 2016
Last updated: December 6, 2016

Authors: [Adrian Laurenzi](http://www.github.com/alaurenz) & [Louis Fettet](http://www.github.com/LouisFettet)

Expand All @@ -28,7 +28,7 @@ Standard jobs can be set up to take a CSV data file from a local machine or netw
![standard job tab](http://i.imgur.com/byN0ibq.png?1)

### GIS Jobs
GIS jobs can be set up to handle geospatial datasets, such as zipped shapefiles, geoJSON, KML, or KMZ files and replace specific datasets on Socrata. The job can then be automated in a similar fashion to standard jobs.
GIS jobs can be set up to handle geospatial datasets, such as zipped shapefiles, geoJSON, KML, or KMZ files and replace specific datasets on Socrata. The job can then be automated in a similar fashion to standard jobs.

### Port Jobs
Port jobs are used for moving data around that is already on the Socrata platform. Users that have publisher rights can make copies of datasets through this tool. Port jobs allow the copying of both dataset schemas (metadata and columns) and data (rows).
Expand All @@ -54,7 +54,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.2-jar-with-dependencies.jar
java -jar DataSync-1.7.3-jar-with-dependencies.jar
```

### Java SDK
Expand Down
13 changes: 12 additions & 1 deletion pom.xml
Expand Up @@ -7,7 +7,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>DataSync</groupId>
<artifactId>DataSync</artifactId>
<version>1.8</version>
<version>1.7.3</version>
<developers>
<developer>
<name>Ayn Leslie-Cook</name>
Expand All @@ -30,9 +30,20 @@
<organization>Socrata</organization>
</developer>
<developer>
<<<<<<< HEAD
<name>Urmila Nadkarni</name>
<email>urmila.nadkarni@socrata.com</email>
<organization>Socrata</organization>
</developer>
<developer>
<name>Robert Macbomber</name>
<email>robert.macomber@socrata.com</email>
<organization>Socrata</organization>
=======
<name>Peter Austin Moore</name>
<email>peter.moore@socrata.com</email>
<organization>Socrata</organization>
>>>>>>> master
</developer>
</developers>
<build>
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/com/socrata/datasync/VersionProviderTest.java
Expand Up @@ -35,7 +35,7 @@ public void testVersionMajorNumbers() {

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

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

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

0 comments on commit 45f2302

Please sign in to comment.