diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a307dc92..7c1cfff51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,28 @@ # Changelog -## [Unreleased](https://github.com/sbt/sbt-native-packager/tree/HEAD) +## [v1](https://github.com/sbt/sbt-native-packager/tree/v1) (2020-07-08) -[Full Changelog](https://github.com/sbt/sbt-native-packager/compare/v1.7.3...HEAD) +[Full Changelog](https://github.com/sbt/sbt-native-packager/compare/v1.7.4...v1) + +## [v1.7.4](https://github.com/sbt/sbt-native-packager/tree/v1.7.4) (2020-07-08) + +[Full Changelog](https://github.com/sbt/sbt-native-packager/compare/v1.7.3...v1.7.4) **Fixed bugs:** +- Error 139 on Docker version 1.39 [\#1346](https://github.com/sbt/sbt-native-packager/issues/1346) - Error due to path separator inconsistency on windows [\#1329](https://github.com/sbt/sbt-native-packager/issues/1329) +**Closed issues:** + +- Rpm should have option to make systemd file config [\#1144](https://github.com/sbt/sbt-native-packager/issues/1144) + +**Merged pull requests:** + +- fix\(Docker.\*?Plugin\): restore the sbt-standard task concurrency tags [\#1352](https://github.com/sbt/sbt-native-packager/pull/1352) ([cchepelov](https://github.com/cchepelov)) +- Systemd mark file as non config [\#1351](https://github.com/sbt/sbt-native-packager/pull/1351) ([tolikr](https://github.com/tolikr)) +- remove sbt 0.12 operators from documentation [\#1350](https://github.com/sbt/sbt-native-packager/pull/1350) ([mberndt123](https://github.com/mberndt123)) + ## [v1.7.3](https://github.com/sbt/sbt-native-packager/tree/v1.7.3) (2020-06-02) [Full Changelog](https://github.com/sbt/sbt-native-packager/compare/v1.7.2...v1.7.3) @@ -1001,6 +1016,7 @@ - Issue 807 - add support to enable/disable service autostart [\#847](https://github.com/sbt/sbt-native-packager/pull/847) ([dpennell](https://github.com/dpennell)) - concners -\> connerns introduction.rst [\#837](https://github.com/sbt/sbt-native-packager/pull/837) ([hedefalk](https://github.com/hedefalk)) - FIX \#770 add ExitStatusSuccess setting for systemd [\#834](https://github.com/sbt/sbt-native-packager/pull/834) ([muuki88](https://github.com/muuki88)) +- maintainer file names were missing [\#805](https://github.com/sbt/sbt-native-packager/pull/805) ([zoosky](https://github.com/zoosky)) ## [v1.1.4](https://github.com/sbt/sbt-native-packager/tree/v1.1.4) (2016-07-17) diff --git a/README.md b/README.md index 46ec8d57a..8b4506b82 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Add the following to your `project/plugins.sbt` file: ```scala // for autoplugins -addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.7.3") +addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.7.4") ``` In your `build.sbt` enable the plugin you want. For example the diff --git a/build.sbt b/build.sbt index 40b70788a..79f465830 100644 --- a/build.sbt +++ b/build.sbt @@ -16,7 +16,7 @@ libraryDependencies ++= Seq( // these dependencies have to be explicitly added by the user "com.spotify" % "docker-client" % "8.14.3" % Provided, "org.vafer" % "jdeb" % "1.7" % Provided artifacts Artifact("jdeb", "jar", "jar"), - "org.apache.commons" % "commons-compress" % "1.18", + "org.apache.commons" % "commons-compress" % "1.20", // for jdkpackager "org.apache.ant" % "ant" % "1.10.5", // workaround for the command line size limit