diff --git a/build.sbt b/build.sbt index 2a940ab..62402e0 100644 --- a/build.sbt +++ b/build.sbt @@ -3,10 +3,10 @@ sbtPlugin := true name := "sbt-install4j" organization := "com.github.jpsacha" -version := "1.3.0-SHAPSHOT" +version := "1.3.0" homepage := Some(url("http://github.com/jpsacha/sbt-install4j")) -organizationHomepage := Some(url("http://ij-plugins.sf.net")) +organizationHomepage := Some(url("http://github.com/jpsacha")) startYear := Some(2014) licenses := Seq("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.html")) description := "SBT plugin for building installers with Install4J." diff --git a/example/build.sbt b/example/build.sbt index be05d8d..1c9a880 100644 --- a/example/build.sbt +++ b/example/build.sbt @@ -1,6 +1,6 @@ name := "sbt-install4j-example" organization := "ij-plugins.sf.net" -version := "1.3.0-SHAPSHOT" +version := "1.3.0" scalaVersion := "2.12.8" diff --git a/example/project/plugin-install4j.sbt b/example/project/plugin-install4j.sbt index 4ab48f2..39561f1 100644 --- a/example/project/plugin-install4j.sbt +++ b/example/project/plugin-install4j.sbt @@ -3,4 +3,4 @@ // For test publishing with `publishM2` resolvers += Resolver.mavenLocal -addSbtPlugin("com.github.jpsacha" % "sbt-install4j" % "1.3.0-SHAPSHOT") +addSbtPlugin("com.github.jpsacha" % "sbt-install4j" % "1.3.0") diff --git a/notes/1.3.0.md b/notes/1.3.0.md new file mode 100644 index 0000000..691eb72 --- /dev/null +++ b/notes/1.3.0.md @@ -0,0 +1,13 @@ +This is a major feature release: addind support for build on multiple platforms and allowing extra parameters to be passed to the Install4J compiler: + +* Add option to specify location of the install4j's command line compiler: `install4jcFile` ([Issue #8][issue-8]) +* Deprecate `install4jHomeDir` setting ([Issue #9][issue-9]) +* Add setting for passing additional command line parameters to the `install4jc` compiler ([Issue #10][issue-10]) +* Allow passing of command line options as arguments to `install4j` task ([Issue #11][issue-11]) +* Clarify that Apache 2.0 license is used ([Issue #12][issue-12]) + +[issue-8]: https://github.com/jpsacha/sbt-install4j/issues/8 +[issue-9]: https://github.com/jpsacha/sbt-install4j/issues/9 +[issue-10]: https://github.com/jpsacha/sbt-install4j/issues/10 +[issue-11]: https://github.com/jpsacha/sbt-install4j/issues/11 +[issue-12]: https://github.com/jpsacha/sbt-install4j/issues/12