Skip to content

Commit

Permalink
Changes for v0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
netj committed Sep 28, 2015
1 parent 69cb74c commit 4dcce35
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "deepdive"

version := "0.7.0"
version := "0.7.1"

scalaVersion := "2.10.5"

Expand Down
23 changes: 23 additions & 0 deletions doc/doc/changelog/0.7.1-alpha.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
layout: default
title: Changes for 0.7.1
---

# Changelog for Release 0.7.1-alpha (09/28/2015)

* Adds better support for applications written in DDlog.
`deepdive run` now runs DDlog-based applications (`app.ddlog`).

* Makes PL/Python extension no longer necessary for PostgreSQL.
It is still needed for Greenplum and PostgreSQL-XL.

* Adds `deepdive sql eval` command now supports `format=json`.

* Adds `deepdive load` command for loading TSV and CSV data.

* Adds `deepdive help` command for quick usage instructions for `deepdive` command.

* Includes the latest Mindbender with the Search GUI for [browsing data produced by DeepDive](../basics/browsing.html).

* Adds various [bug fixes and improvements](https://github.com/HazyResearch/deepdive/issues?q=milestone%3A%22DeepDive+0.7.1%22).

Binary file modified doc/images/carousel/deepdive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/images/carousel/deepdive.psd
Binary file not shown.
1 change: 1 addition & 0 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ and

### Updates & Changelog

- [Changelog for version 0.7.1-alpha](doc/changelog/0.7.1-alpha.html) (09/28/2015)
- [Changelog for version 0.7.0-alpha](doc/changelog/0.7.0-alpha.html) (07/14/2015)
- [Changelog for version 0.6.0-alpha](doc/changelog/0.6.0-alpha.html) (06/17/2015)
- [Changelog for version 0.05-alpha](doc/changelog/0.05.01-alpha.html) (02/08/2015)
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/org/deepdive/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object Main extends App with Logging {
configFile: File = null,
outputDir: File = defaultOutputDir)
val parser = new scopt.OptionParser[CliOptions]("scopt") {
head("deepdive", "0.7.0")
head("deepdive", "0.7.1")
opt[File]('c', "config") required() valueName("<config>") action { (x,c) =>
c.copy(configFile = x)
} text("configuration file path (required)")
Expand Down
2 changes: 1 addition & 1 deletion util/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# DeepDive Installer
set -eu

: ${RELEASE:=v0.7.0} # the DeepDive release version to install
: ${RELEASE:=v0.7.1} # the DeepDive release version to install
: ${PREFIX:=~/local} # the path to install deepdive

: ${INSTALLER_BRANCH:=${BRANCH:-v0.7.x}} # the branch from which the installer scripts should be downloaded
Expand Down

0 comments on commit 4dcce35

Please sign in to comment.