This is an automated email from the ASF dual-hosted git repository. donaldp pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/buildr.git
commit 9a9f8848ec46c03a4dd18fcc2448add190db9708 Author: Peter Donald <pe...@realityforge.org> AuthorDate: Mon Jul 15 08:32:52 2019 +1000 Prepare for next development iteration --- CHANGELOG | 2 ++ doap.rdf | 25 +++++++++++++++++++++++++ lib/buildr/version.rb | 2 +- 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index b614843..7dea3a4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,5 @@ +1.5.9 (Pending) + 1.5.8 (2019-07-14) * Fixed: Changed references to `https://repo1.maven.org/maven2` to use https where possible. * Change: Use the `zapwhite` gem to manage file whitespace within repository. diff --git a/doap.rdf b/doap.rdf index 24c67b6..0e6a116 100644 --- a/doap.rdf +++ b/doap.rdf @@ -37,6 +37,31 @@ <category rdf:resource="http://projects.apache.org/category/build-management" /> <release> <Version> + <name>1.5.8</name> + <created>2019-07-14</created> + <revision>1.5.8</revision> + <dc:description> +* Fixed: Changed references to `https://repo1.maven.org/maven2` to use https where possible. +* Change: Use the `zapwhite` gem to manage file whitespace within repository. +* Fixed: Replace references to long removed `http://www.ibiblio.org/maven2/` repository with + `https://repo1.maven.org/maven2`. +* Fixed: Ensure pom files used in tests use https when referring to maven repositories. +* Added: Add support for downloading external annotations and attaching them to IntelliJ IDEA module dependencies. +* Added: Detect external annotations in the local project and add them to the generated IntelliJ IDEA + module when generating. The default location is `src/main/annotations` but other locations + can be specified by modifying the `project.iml.annotation_paths` property. +* Fixed: Explicitly specify the `:sourcepath` parameter for javadoc tool. This enables additional parameters + such as `-packagenames` and `-subpackages` to be passed to the underling tool. +* Fixed: Stop generating poms with the parent POM `org.sonatype.oss:oss-parent:8`. The las update was a long time + ago (i.e. 2012) and it is no longer maintained. It was also deprecated several years ago and is not + guaranteed to work in modern Maven deployments. + + </dc:description> + </Version> + </release> + + <release> + <Version> <name>1.5.7</name> <created>2019-02-16</created> <revision>1.5.7</revision> diff --git a/lib/buildr/version.rb b/lib/buildr/version.rb index 3350cab..1cb9f12 100644 --- a/lib/buildr/version.rb +++ b/lib/buildr/version.rb @@ -14,5 +14,5 @@ # the License. module Buildr #:nodoc: - VERSION = '1.5.8'.freeze + VERSION = '1.5.9.dev'.freeze end