diff --git a/CHANGELOG.md b/CHANGELOG.md index f40d4ab1..b7c0b064 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ The main API is stable, but expect some amount of breaking changes around major - Add strict `Accept` header checking for `RouteSpec`s based on `producing()` settings. Option for non-strictness. - Add integrated self-hosted Swagger UI/ReDoc UI module -## 14.4.0 (uncut) +## 14.4.0 - Release for Scala 2.12.0 ## 14.3.0 diff --git a/README.md b/README.md index 07b6d00b..20ececcc 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ To activate some optional features, additional dependencies may be required - pl Add the following lines to ```build.sbt``` - the lib is hosted in Maven Central and JCenter: ```scala resolvers += "JCenter" at "https://jcenter.bintray.com" -libraryDependencies += "io.fintrospect" %% "fintrospect-core" % "14.3.0" +libraryDependencies += "io.fintrospect" %% "fintrospect-core" % "14.4.0" ``` ## See the code diff --git a/build.sbt b/build.sbt index 0a12c445..d4385883 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ lazy val baseSettings = Seq( name := "fintrospect", organization := "io.fintrospect", - version := "14.3.0", + version := "14.4.0", scalaVersion := "2.12.0", crossScalaVersions := Seq("2.12.0", "2.11.8"), licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")), diff --git a/harp.json b/harp.json index dd2b22e1..658002bc 100644 --- a/harp.json +++ b/harp.json @@ -1,8 +1,8 @@ { "globals": { "fintrospect": { - "old": "14.2.0", - "new": "14.3.0" + "old": "14.3.0", + "new": "14.4.0" } } } \ No newline at end of file diff --git a/src/main/hugosite/content/cookbook/helloworld.md b/src/main/hugosite/content/cookbook/helloworld.md index 4d821038..7b602415 100644 --- a/src/main/hugosite/content/cookbook/helloworld.md +++ b/src/main/hugosite/content/cookbook/helloworld.md @@ -3,4 +3,4 @@ title = "recipe: helloworld" sidebar = "true" +++ -hello \ No newline at end of file +hello diff --git a/src/main/hugosite/content/cookbook/index.md b/src/main/hugosite/content/cookbook/index.md index 2187a02e..096152cc 100644 --- a/src/main/hugosite/content/cookbook/index.md +++ b/src/main/hugosite/content/cookbook/index.md @@ -3,4 +3,4 @@ title = "cookbook" sidebar = "true" +++ -please select a recipe from the left column \ No newline at end of file +please select a recipe from the left column diff --git a/src/main/hugosite/themes/hugo-universal-theme/archetypes/default.md b/src/main/hugosite/themes/hugo-universal-theme/archetypes/default.md index e9151147..42992b10 100644 --- a/src/main/hugosite/themes/hugo-universal-theme/archetypes/default.md +++ b/src/main/hugosite/themes/hugo-universal-theme/archetypes/default.md @@ -1,4 +1,4 @@ +++ tags = [] categories = [] -+++ \ No newline at end of file ++++ diff --git a/src/main/site/format-dependencies.md b/src/main/site/format-dependencies.md index e059ea34..198441b7 100644 --- a/src/main/site/format-dependencies.md +++ b/src/main/site/format-dependencies.md @@ -14,19 +14,19 @@ Argonaut application/json - "io.fintrospect" %% "fintrospect-argonaut" % "14.3.0" + "io.fintrospect" %% "fintrospect-argonaut" % "14.4.0" Argonaut Circe application/json - "io.fintrospect" %% "fintrospect-circe" % "14.3.0" + "io.fintrospect" %% "fintrospect-circe" % "14.4.0" Circe GSON application/json - "io.fintrospect" %% "fintrospect-gson" % "14.3.0" + "io.fintrospect" %% "fintrospect-gson" % "14.4.0" Gson @@ -38,14 +38,14 @@ Jackson application/json - "io.fintrospect" %% "fintrospect-jackson" % "14.3.0" + "io.fintrospect" %% "fintrospect-jackson" % "14.4.0" Jackson Json4S Native application/json - "io.fintrospect" %% "fintrospect-json4s" % "14.3.0" + "io.fintrospect" %% "fintrospect-json4s" % "14.4.0" Json4s
Json4sDoubleMode @@ -53,7 +53,7 @@ Json4S Jackson application/json - "io.fintrospect" %% "fintrospect-json4s" % "14.3.0" + "io.fintrospect" %% "fintrospect-json4s" % "14.4.0" Json4sJackson
@@ -62,7 +62,7 @@ MsgPack application/msgpack - "io.fintrospect" %% "fintrospect-msgpack" % "14.3.0" + "io.fintrospect" %% "fintrospect-msgpack" % "14.4.0" MsgPack @@ -74,13 +74,13 @@ Play application/json - "io.fintrospect" %% "fintrospect-play" % "14.3.0" + "io.fintrospect" %% "fintrospect-play" % "14.4.0" Play Spray application/json - "io.fintrospect" %% "fintrospect-spray" % "14.3.0" + "io.fintrospect" %% "fintrospect-spray" % "14.4.0" Spray diff --git a/src/main/site/installation-header.md b/src/main/site/installation-header.md index e0946701..192b257e 100644 --- a/src/main/site/installation-header.md +++ b/src/main/site/installation-header.md @@ -9,5 +9,5 @@ To activate some optional features, additional dependencies may be required - th Add the following lines to ```build.sbt``` - the lib is hosted in Maven Central and JCenter: ```scala resolvers += "JCenter" at "https://jcenter.bintray.com" -libraryDependencies += "io.fintrospect" %% "fintrospect-core" % "14.3.0" +libraryDependencies += "io.fintrospect" %% "fintrospect-core" % "14.4.0" ``` diff --git a/src/main/site/templating-dependencies.md b/src/main/site/templating-dependencies.md index b8aee8b1..2d9c0837 100644 --- a/src/main/site/templating-dependencies.md +++ b/src/main/site/templating-dependencies.md @@ -8,13 +8,13 @@ Handlebars .hbs - "io.fintrospect" %% "fintrospect-handlebars" % "14.3.0" + "io.fintrospect" %% "fintrospect-handlebars" % "14.4.0" HandlebarsTemplates Mustache .mustache - "io.fintrospect" %% "fintrospect-mustache" % "14.3.0" + "io.fintrospect" %% "fintrospect-mustache" % "14.4.0" MustacheTemplates