Skip to content

Commit

Permalink
releasing-v1.7.0 (#967)
Browse files Browse the repository at this point in the history
  • Loading branch information
subotic authored Aug 16, 2018
1 parent 2d5dc67 commit d0dbe6f
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 17 deletions.
4 changes: 2 additions & 2 deletions docs/DocsBuild.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import scala.sys.process._

// Define `Configuration` instances representing our different documentation trees
val ParadoxSite = config("paradox")
lazy val ParadoxSite = config("paradox")

lazy val docs = (project in file(".")).
configs(
Expand All @@ -16,7 +16,7 @@ lazy val docs = (project in file(".")).
).
settings(
// Set version string
version in ParadoxSite := "v1.6.0",
version in ParadoxSite := "v1.7.0",

// Ghpages settings
ghpagesNoJekyll := true,
Expand Down
1 change: 1 addition & 0 deletions docs/src/paradox/00-release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ These are the release notes for each version of Knora.
* [v1.5.0](v1.5.0.md)
* [v1.6.0](v1.6.0.md)
* [v1.7.0](v1.7.0.md)
* [v1.8.0](v1.8.0.md)

@@@
4 changes: 2 additions & 2 deletions docs/src/paradox/00-release-notes/v1.7.0.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v1.7.0 Release Notes (not released yet)
=======================================
v1.7.0 Release Notes
====================

See the
[release](https://github.com/dhlab-basel/Knora/releases/tag/v1.7.0) and closed tickets on the
Expand Down
15 changes: 15 additions & 0 deletions docs/src/paradox/00-release-notes/v1.8.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
v1.8.0 Release Notes (not released yet)
=======================================

See the
[release](https://github.com/dhlab-basel/Knora/releases/tag/v1.8.0) and closed tickets on the
[v1.7.0 milestone](https://github.com/dhlab-basel/Knora/milestone/12) on Github.

Required changes to existing data:
----------------------------------

New features:
-------------

Bugfixes:
---------
14 changes: 7 additions & 7 deletions salsah1/SalsahBuild.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
import sbt._
import NativePackagerHelper._

lazy val salsahCommonSettings = Seq(
organization := "org.knora",
name := "salsah",
version := "1.7.0",
scalaVersion := "2.12.4"
)

lazy val salsah1 = (project in file(".")).
configs(
HeadlessTest
Expand Down Expand Up @@ -43,13 +50,6 @@ lazy val salsah1 = (project in file(".")).
settings(Revolver.settings: _*).
enablePlugins(JavaAppPackaging) // Enable the sbt-native-packager plugin

lazy val salsahCommonSettings = Seq(
organization := "org.knora",
name := "salsah",
version := "1.6.0",
scalaVersion := "2.12.4"
)

lazy val javaRunOptions = Seq(
// "-showversion",
"-Xms256m",
Expand Down
14 changes: 8 additions & 6 deletions webapi/WebapiBuild.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ import sbt.librarymanagement.Resolver

connectInput in run := true

lazy val webApiCommonSettings = Seq(
organization := "org.knora",
name := "webapi",
version := "1.7.0",
scalaVersion := "2.12.4"
)

// custom test and it settings
lazy val GDBSE = config("gdbse") extend Test
lazy val GDBSEIt = config("gdbse-it") extend IntegrationTest
Expand Down Expand Up @@ -159,12 +166,7 @@ lazy val webapi = (project in file(".")).
enablePlugins(JavaAgent). // Adds AspectJ Weaver configuration
enablePlugins(RevolverPlugin)

lazy val webApiCommonSettings = Seq(
organization := "org.knora",
name := "webapi",
version := "1.6.0",
scalaVersion := "2.12.4"
)


lazy val webApiLibs = Seq(
library.aspectJWeaver,
Expand Down

0 comments on commit d0dbe6f

Please sign in to comment.