Skip to content
This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Commit 6d20802

Browse files
author
Julian Cerruti
committed
Bump version
1 parent a6522a4 commit 6d20802

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog
33
^^^^^^^^^
44

5+
0.3.0 (2016-12-14)
6+
------------------
7+
* Updates for Kinetic release.
8+
59
0.2.4 (2015-06-03)
610
------------------
711
* bugfix environment hooks for workspaces with spaces.

package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<package>
22
<name>rosjava_build_tools</name>
3-
<version>0.2.4</version>
3+
<version>0.3.0</version>
44
<description>
5-
Simple tools and catkin modules for rosjava development.
5+
Simple tools and catkin modules for rosjava development.
66
</description>
77
<maintainer email="[email protected]">Daniel Stonier</maintainer>
88
<license>BSD</license>

src/rosjava_build_tools/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def scrape_for_release_message_packages(track):
1717
url = rosdistro.get_index_url()
1818
index = rosdistro.get_index(url)
19-
cache = rosdistro.get_release_cache(index, 'indigo')
19+
cache = rosdistro.get_release_cache(index, 'kinetic')
2020
packages = []
2121
for package_name, package_string in cache.package_xmls.iteritems():
2222
package = catkin_pkg.package.parse_package_string(package_string)

src/rosjava_build_tools/templates/android_package/build.gradle.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ task wrapper(type: Wrapper) {
1919
}
2020

2121
buildscript {
22-
apply from: "https://github.com/rosjava/android_core/raw/indigo/buildscript.gradle"
22+
apply from: "https://github.com/rosjava/android_core/raw/kinetic/buildscript.gradle"
2323
}
2424

2525
apply plugin: 'catkin'
@@ -42,11 +42,11 @@ subprojects {
4242
*
4343
* To modify, or add repos to the default external maven repositories list, pull request against this code:
4444
*
45-
* https://github.com/rosjava/rosjava_bootstrap/blob/indigo/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy#L31
45+
* https://github.com/rosjava/rosjava_bootstrap/blob/kinetic/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy#L31
4646
*
4747
* To modify the build tools version, pull request against this code:
4848
*
49-
* https://github.com/rosjava/rosjava_bootstrap/blob/indigo/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosAndroid.groovy#L14
49+
* https://github.com/rosjava/rosjava_bootstrap/blob/kinetic/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosAndroid.groovy#L14
5050
*/
5151
apply plugin: 'ros-android'
5252

src/rosjava_build_tools/templates/rosjava_package/build.gradle.in

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ task wrapper(type: Wrapper) {
1919
}
2020

2121
buildscript {
22-
apply from: "https://github.com/rosjava/rosjava_bootstrap/raw/indigo/buildscript.gradle"
22+
apply from: "https://github.com/rosjava/rosjava_bootstrap/raw/kinetic/buildscript.gradle"
2323
}
2424

2525
apply plugin: 'catkin'
@@ -35,16 +35,16 @@ allprojects {
3535
}
3636

3737
subprojects {
38-
/*
38+
/*
3939
* The ros plugin configures a few things:
40-
*
40+
*
4141
* - local deployment repository : where it dumps the jars and packaged artifacts)
4242
* - local maven repositories : where it finds your locally installed/built artifacts)
4343
* - external maven repositories : where it goes looking if it can't find dependencies locally
44-
*
44+
*
4545
* To modify, or add repos to the default external maven repositories list, pull request against this code:
46-
*
47-
* https://github.com/rosjava/rosjava_bootstrap/blob/indigo/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy#L31
46+
*
47+
* https://github.com/rosjava/rosjava_bootstrap/blob/kinetic/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy#L31
4848
*/
4949
apply plugin: "ros-java"
5050
/*

0 commit comments

Comments
 (0)