Skip to content

Commit

Permalink
1.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydmeta committed Jul 21, 2016
1 parent 1f95345 commit 0de4dd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := """sbt-javacpp"""

version := "1.6-SNAPSHOT"
version := "1.6"

organization := "org.bytedeco"

Expand Down
6 changes: 3 additions & 3 deletions src/main/scala/org/bytedeco/sbt/javacpp/Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ object Plugin extends AutoPlugin {
}

/**
* Given a version string, simply drops the patch level and returns the major-minor version only
* @param version
*/
* Given a version string, simply drops the patch level and returns the major-minor version only
* @param version
*/
private def majorMinorOnly(version: String): String = {
version.split('.').take(2).mkString(".")
}
Expand Down

0 comments on commit 0de4dd9

Please sign in to comment.