Skip to content

Commit

Permalink
Releasing v1.5.0 (#872)
Browse files Browse the repository at this point in the history
* refactor (salsah): clearer naming of settings

* releasing v1.5.0
  • Loading branch information
subotic authored May 31, 2018
1 parent 1923832 commit d21409e
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 18 deletions.
4 changes: 2 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
1. Remove the `(not released yet)` text in the title of the release notes.
1. Create a new page with the next version number including the `(not released yet)` text and add page to TOC.
1. Update links in the new page to point to correct release tag and milestone.
1. On Github - Move any open issues from current release milestone to the next release milestone.
1. On Github - Close current milestone.
1. On Github - Create new milestone
1. On Github - Move any open issues from current release milestone to the next release milestone and so on.
1. On Github - Close current milestone.
1. Run `GenerateContributorsFile`, passing it a GitHub API token (`runMain org.knora.webapi.util.GenerateContributorsFile [ -t TOKEN ]`), to generate `Contributors.md`, then commit that file.
1. Push and merge PR to `develop`.
1. Travis CI will start a [CI build](https://travis-ci.org/dhlab-basel/Knora/builds) for the new tag and publish
Expand Down
2 changes: 1 addition & 1 deletion docs/DocsBuild.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lazy val root = (project in file(".")).
).
settings(
// Set version string
version in ParadoxSite := "v1.4.0",
version in ParadoxSite := "v1.5.0",

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

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

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

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

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


Bugfixes:
---------

6 changes: 3 additions & 3 deletions salsah1/SalsahBuild.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ lazy val salsah = (project in file(".")).
lazy val salsahCommonSettings = Seq(
organization := "org.knora",
name := "salsah",
version := "1.4.0",
version := "1.5.0",
scalaVersion := "2.12.4"
)

Expand Down Expand Up @@ -75,8 +75,8 @@ lazy val javaHeadlessTestOptions = Seq(
"-Dconfig.resource=headless-testing.conf"
) ++ javaTestOptions

lazy val akkaVersion = "2.5.9"
lazy val akkaHttpVersion = "10.0.11"
lazy val akkaVersion = "2.5.11"
lazy val akkaHttpVersion = "10.1.0"

lazy val salsahLibs = Seq(
// akka
Expand Down
8 changes: 3 additions & 5 deletions salsah1/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ app {
http
{
hostname = "0.0.0.0"
http-port = 3335
https-port = 3336
base-knora-url = "http://0.0.0.0:3333"
port = 3335
}
jsconf {
webapi-url = "http://0.0.0.0:3333"
sipi-url = "http://0.0.0.0:1024"
external-webapi-url = "http://0.0.0.0:3333"
external-sipi-url = "http://0.0.0.0:1024"
}
testing {
headless = false
Expand Down
7 changes: 3 additions & 4 deletions salsah1/src/main/scala/org/knora/salsah/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ import com.typesafe.config.Config
class SettingsImpl(config: Config) extends Extension {

val hostName = config.getString("app.http.hostname")
val httpPort = config.getInt("app.http.http-port")
val httpsPort = config.getInt("app.http.https-port")
val httpPort = config.getInt("app.http.port")

// used for testing
val headless = config.getBoolean("app.testing.headless")
Expand All @@ -40,8 +39,8 @@ class SettingsImpl(config: Config) extends Extension {
val workingDirectory = config.getString("app.workdir")

// Javascript Configuration
val webapiUrl = config.getString("app.jsconf.webapi-url")
val sipiUrl = config.getString("app.jsconf.sipi-url")
val webapiUrl = config.getString("app.jsconf.external-webapi-url")
val sipiUrl = config.getString("app.jsconf.external-sipi-url")
}


Expand Down
2 changes: 1 addition & 1 deletion webapi/WebapiBuild.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ lazy val webapi = (project in file(".")).
lazy val webApiCommonSettings = Seq(
organization := "org.knora",
name := "webapi",
version := "1.4.0",
version := "1.5.0",
scalaVersion := "2.12.4"
)

Expand Down

0 comments on commit d21409e

Please sign in to comment.