You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by to...@apache.org on 2016/09/19 06:36:24 UTC

[2/6] buildr git commit: Prepare release 1.5.0

Prepare release 1.5.0


Project: http://git-wip-us.apache.org/repos/asf/buildr/repo
Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/3526a369
Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/3526a369
Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/3526a369

Branch: refs/heads/master
Commit: 3526a36926f9d32cba1d641a438c5feadb4bfe97
Parents: 0c2ddc3
Author: Antoine Toulme <an...@lunar-ocean.com>
Authored: Fri Sep 16 23:00:36 2016 -0700
Committer: Antoine Toulme <an...@lunar-ocean.com>
Committed: Fri Sep 16 23:04:21 2016 -0700

----------------------------------------------------------------------
 CHANGELOG             |  2 +-
 doc/index.textile     | 38 ++++++++++++++++----------------------
 lib/buildr/version.rb |  2 +-
 3 files changed, 18 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/3526a369/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index 5ee7723..e9cd082 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-1.5.0 (Pending)
+1.5.0 (2016-09-16)
 * Change: Update RJB to 1.5.4
 * Change: Update rubyzip to 1.2.0
 * Change: Update hoe to 3.15.0

http://git-wip-us.apache.org/repos/asf/buildr/blob/3526a369/doc/index.textile
----------------------------------------------------------------------
diff --git a/doc/index.textile b/doc/index.textile
index d10f9f8..8662840 100644
--- a/doc/index.textile
+++ b/doc/index.textile
@@ -46,28 +46,22 @@ So let's get started.  You can "read the documentation online":quick_start.html,
 
 h2(#news).  What's New
 
-Highlights from Buildr 1.4.25 (2016-04-18)
-* Change: BUILDR-712 Update jruby-openssl dependency version or support a range of versions
-* Change: Update gwt addon to add the GWT artifacts to project dependencies as specs rather
-          than files.
-* Change: Support the project.root_project utility method to retrieve the top level project.
-
-Highlights from Buildr 1.4.24 (2016-03-19)
-* Added:  Support the :no_invoke parameter being passed to Buildr.project() and
-          Buildr.projects() to avoid attempting to call invoke when retrieving the projects.
-* Added:  Add `exclude_paths` setting to pmd addon to allow paths to be explicitly excluded.
-* Fixed:  Update jDepend addon to ensure target directories are invoked prior to attempting
-          to analyze directories.
-* Added:  Add jdepend.additional_project_names configuration to jDepend addon to
-          ease merging in the source paths from multiple projects into one jDepend task.
-* Added:  Add findbugs.additional_project_names configuration to Findbugs addon to
-          ease merging in the source paths from multiple projects into one Findbugs task.
-* Added:  Add checkstyle.additional_project_names configuration to Checkstyle addon to
-          ease merging in the source paths from multiple projects into one Checkstyle task.
-* Added:  Add pmd.additional_project_names configuration to PMD addon to ease merging in
-          the source paths from multiple projects into one PMD task.
-* Change: Update the default GWT version used in the GWT addon to the latest release 2.7.0.
-* Change: Update the checkstyle addon to use checkstyle 6.12.1.
+Highlights from Buildr 1.5.0 (2016-09-16)
+* Change: Move to default on Scala 2.11.
+* Added:  BUILDR-577 Allow remote repo to be added with http basic auth support. Submitted by Michael Guymon.
+* Added:  BUILDR-572 Allow to upload unique version (timestamp based) snapshot artifacts to a repository. Submitted by Brice Figureau.
+* Added:  BUILDR-703 release: allow THIS_VERSION to be defined in another file
+* Fixed:  BUILDR-565 resources are not included in the war if defined after package call
+* Fixed:  BUILDR-621 ZipTask creates zip file with entries not sorted by path causing very slow unzipping.
+* Fixed:  BUILDR-695 transitive doesn't support ${project.parent.version} in POM.
+* Fixed:  BUILDR-653 Using Eclipse compiler (ECJ)
+* Fixed:  BUILDR-476 Buildr doesn't respect company repository manager
+* Fixed:  BUILDR-454 Definition-level parent-child references-by-name fail in 1.4.0 but not in 1.3.5. Submitted by Rhett Sutphin.
+* Fixed:  BUILDR-620 resources.filter should not run on non-text files
+* Fixed:  BUILDR-486 Buildr-generated poms should include dependencies
+* Change: Update the custom_pom addon to generate poms with exclusions section that excludes
+          all transitive dependencies. This is required as buildr dependencies are not
+          transitive while Maven's dependencies are transitive by default.
 
 This is a partial list -- see the "CHANGELOG":CHANGELOG for full details.
 

http://git-wip-us.apache.org/repos/asf/buildr/blob/3526a369/lib/buildr/version.rb
----------------------------------------------------------------------
diff --git a/lib/buildr/version.rb b/lib/buildr/version.rb
index 7da5242..d11af15 100644
--- a/lib/buildr/version.rb
+++ b/lib/buildr/version.rb
@@ -14,5 +14,5 @@
 # the License.
 
 module Buildr #:nodoc:
-  VERSION = '1.5.0.dev'.freeze
+  VERSION = '1.5.0'.freeze
 end