Repository: jclouds-site Updated Branches: refs/heads/releasenotes-192 bcffa28b0 -> 55df26e98
Fixed deploy-javadoc script and added annoncement link Project: http://git-wip-us.apache.org/repos/asf/jclouds-site/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds-site/commit/55df26e9 Tree: http://git-wip-us.apache.org/repos/asf/jclouds-site/tree/55df26e9 Diff: http://git-wip-us.apache.org/repos/asf/jclouds-site/diff/55df26e9 Branch: refs/heads/releasenotes-192 Commit: 55df26e98f39179ba8fd6b4495587478f1896136 Parents: bcffa28 Author: Ignasi Barrera <[email protected]> Authored: Mon Jan 18 11:17:10 2016 +0100 Committer: Ignasi Barrera <[email protected]> Committed: Mon Jan 18 11:17:10 2016 +0100 ---------------------------------------------------------------------- deploy-javadoc.sh | 13 +++++++------ releasenotes/1.9.2.md | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds-site/blob/55df26e9/deploy-javadoc.sh ---------------------------------------------------------------------- diff --git a/deploy-javadoc.sh b/deploy-javadoc.sh index 877b670..72ed5cf 100755 --- a/deploy-javadoc.sh +++ b/deploy-javadoc.sh @@ -23,21 +23,20 @@ cd $TMPDIR for name in jclouds jclouds-labs-openstack; do rm -rf ${name} - git clone https://github.com/jclouds/${name}.git + git clone https://git-wip-us.apache.org/repos/asf/${name}.git cd ${name} - git checkout ${JCLOUDS_VERSION_X} - git reset --hard ${name}-${JCLOUDS_VERSION} + git checkout rel/${name}-${JCLOUDS_VERSION} cd .. done -apis="openstack-glance openstack-neutron openstack-marconi rackspace-autoscale rackspace-cloudfiles" +apis="openstack-glance openstack-neutron openstack-marconi rackspace-autoscale" for api in ${apis}; do mv jclouds-labs-openstack/${api} jclouds/apis/ sed -i "" "s#<module>route53</module>#<module>route53</module><module>${api}</module>#g" jclouds/apis/pom.xml done -providers="rackspace-autoscale-us rackspace-cloudqueues-us rackspace-cloudqueues-uk rackspace-cloudfiles-uk rackspace-cloudfiles-us" +providers="rackspace-autoscale-us rackspace-cloudqueues-us rackspace-cloudqueues-uk" for provider in ${providers}; do mv jclouds-labs-openstack/${provider} jclouds/providers/ @@ -62,7 +61,9 @@ else svn status - read -p "Are you sure you want to deploy the above changes? (y|n) " -n 1 -r + read -p "Are you sure you want to deploy the above changes? (y|n) " + [[ ${REPLY} == "y" ]] || exit 0 ]] + echo svn commit --message 'deploy jclouds javadoc site content' http://git-wip-us.apache.org/repos/asf/jclouds-site/blob/55df26e9/releasenotes/1.9.2.md ---------------------------------------------------------------------- diff --git a/releasenotes/1.9.2.md b/releasenotes/1.9.2.md index eefebe6..8383a75 100644 --- a/releasenotes/1.9.2.md +++ b/releasenotes/1.9.2.md @@ -12,7 +12,7 @@ permalink: /releasenotes/1.9.2/ ## <a id="intro"></a>Introduction -You can read the official announcement at [(TODO) Apache jclouds 1.9.2 released](http://markmail.org/message/7axjkmb7kypgvtot). To get started with jclouds, please see the [jclouds installation guide](/start/install/). +You can read the official announcement at [Apache jclouds 1.9.2 released](http://markmail.org/message/lyozqjxkcxm47zh5). To get started with jclouds, please see the [jclouds installation guide](/start/install/). This is a bugfix release. The following list shows the fixed issues and improvements:
