Skip to content

Commit

Permalink
Set version number for the next release and add release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsacha committed Apr 6, 2019
1 parent 3bf4337 commit ea9550b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
2 changes: 1 addition & 1 deletion example/build.sbt
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion example/project/plugin-install4j.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
13 changes: 13 additions & 0 deletions notes/1.3.0.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ea9550b

Please sign in to comment.