Skip to content

Commit

Permalink
release 1.4.12
Browse files Browse the repository at this point in the history
  • Loading branch information
lebinh committed Mar 14, 2016
1 parent eed65bf commit 785ec19
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 15 deletions.
21 changes: 21 additions & 0 deletions bin/bump-version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash
set -ex

version=$1

if [[ -z $version ]]; then
echo 'Usage: bump-version.sh <version>'
exit 1
fi

SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
SOURCE_ROOT=$SCRIPT_DIR/..

$SOURCE_ROOT/bin/sbt clean

sed -e "s/val rootVersion = \".*\"/val rootVersion = \"$version\"/g" \
-i '' $SOURCE_ROOT/project/RootBuild.scala

$SOURCE_ROOT/bin/make-poms.sh

echo "Last thing: please edit pom.xml to change to <version>$version</version>"
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>ddf_core_2.10</artifactId>
<packaging>jar</packaging>
<description>ddf_core</description>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
<name>ddf_core</name>
<organization>
<name>io.ddf</name>
Expand All @@ -18,7 +18,7 @@
<parent>
<groupId>io</groupId>
<artifactId>ddf</artifactId>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
</parent>
<build>
<directory>${basedir}/target/scala-2.10</directory>
Expand Down
6 changes: 3 additions & 3 deletions ddf-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>ddf_test_2.10</artifactId>
<packaging>jar</packaging>
<description>ddf_test</description>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
<name>ddf_test</name>
<organization>
<name>io.ddf</name>
Expand All @@ -18,7 +18,7 @@
<parent>
<groupId>io</groupId>
<artifactId>ddf</artifactId>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
</parent>
<build>
<directory>${basedir}/target/scala-2.10</directory>
Expand Down Expand Up @@ -217,7 +217,7 @@
<dependency>
<groupId>io.ddf</groupId>
<artifactId>ddf_core_2.10</artifactId>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
8 changes: 4 additions & 4 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>ddf_examples_2.10</artifactId>
<packaging>jar</packaging>
<description>ddf_examples</description>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
<name>ddf_examples</name>
<organization>
<name>io.ddf</name>
Expand All @@ -18,7 +18,7 @@
<parent>
<groupId>io</groupId>
<artifactId>ddf</artifactId>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
</parent>
<build>
<directory>${basedir}/target/scala-2.10</directory>
Expand Down Expand Up @@ -217,12 +217,12 @@
<dependency>
<groupId>io.ddf</groupId>
<artifactId>ddf_spark_2.10</artifactId>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
</dependency>
<dependency>
<groupId>io.ddf</groupId>
<artifactId>ddf_core_2.10</artifactId>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<artifactId>ddf</artifactId>
<packaging>pom</packaging>
<description>Distributed DataFrame</description>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
<name>ddf</name>
<organization>
<name>io.ddf</name>
Expand Down
2 changes: 1 addition & 1 deletion project/RootBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object RootBuild extends Build {
val rootOrganization = "io"
val projectName = "ddf"
val rootProjectName = projectName
val rootVersion = "1.4.12-SNAPSHOT"
val rootVersion = "1.4.12"
//val rootVersion = if(YARN_ENABLED) {
// "1.2-adatao"
//} else {
Expand Down
8 changes: 4 additions & 4 deletions spark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>ddf_spark_2.10</artifactId>
<packaging>jar</packaging>
<description>ddf_spark</description>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
<name>ddf_spark</name>
<organization>
<name>io.ddf</name>
Expand All @@ -18,7 +18,7 @@
<parent>
<groupId>io</groupId>
<artifactId>ddf</artifactId>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
</parent>
<build>
<directory>${basedir}/target/scala-2.10</directory>
Expand Down Expand Up @@ -217,13 +217,13 @@
<dependency>
<groupId>io.ddf</groupId>
<artifactId>ddf_test_2.10</artifactId>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.ddf</groupId>
<artifactId>ddf_core_2.10</artifactId>
<version>1.4.12-SNAPSHOT</version>
<version>1.4.12</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down

0 comments on commit 785ec19

Please sign in to comment.