Skip to content

Commit

Permalink
Merge pull request #9763 from caskdata/feature/remove-snapshot-4.3.2-…
Browse files Browse the repository at this point in the history
…manual

manual changes in json, sh, tx files for removing snapshot version
  • Loading branch information
gsps1 authored Nov 11, 2017
2 parents 83dbd64 + f02a1d5 commit 036fb04
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion cdap-distributions/bin/build_docs_bucket.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ TARGET_DIR=${DOCS_HOME}/target

S3_BUCKET=${S3_BUCKET:-docs.cask.co}
S3_REPO_PATH=${S3_REPO_PATH:-cdap} # No leading or trailing slashes
VERSION=${VERSION:-4.3.2-SNAPSHOT}
VERSION=${VERSION:-4.3.2}

function die() { __code=${2:-1}; echo "[ERROR] ${1}" >&2; exit ${__code}; };

Expand Down
4 changes: 2 additions & 2 deletions cdap-distributions/src/emr/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ CDAP_BRANCH=${CDAP_BRANCH:-release/4.3}
# Optional tag to checkout - All released versions of this script should set this
# like this: CDAP_TAG=${CDAP_TAG:+tag} as this allows setting tag to empty/null
# otherwise, it should be CDAP_TAG=''
CDAP_TAG=${CDAP_TAG:+v4.3.2-SNAPSHOT}
CDAP_TAG=${CDAP_TAG:+v4.3.2}
# The CDAP package version passed to Chef
CDAP_VERSION=${CDAP_VERSION:-4.3.2-SNAPSHOT-1}
CDAP_VERSION=${CDAP_VERSION:-4.3.2-1}
# The version of Chef to install
CHEF_VERSION=${CHEF_VERSION:-12.10.24}
# cdap-site.xml configuration parameters
Expand Down
2 changes: 1 addition & 1 deletion cdap-distributions/src/hdinsight/pkg/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CDAP_BRANCH='release/4.3'
# otherwise, it should be CDAP_TAG=''
CDAP_TAG=${CDAP_TAG:+hdi4.3}
# The CDAP package version passed to Chef
CDAP_VERSION='4.3.2-SNAPSHOT-1'
CDAP_VERSION='4.3.2-1'
# The version of Chef to install
CHEF_VERSION='12.10.24'
# cdap-site.xml configuration parameters
Expand Down
4 changes: 2 additions & 2 deletions cdap-distributions/src/hdinsight/pkg/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
},
"installScriptActions": [{
"name": "[concat('cdap-pageblob-configure-v0','-' ,uniquestring(variables('applicationName')))]",
"uri": "http://downloads.cask.co/hdinsight/pageblob-configure-4.3.2-SNAPSHOT.sh",
"uri": "http://downloads.cask.co/hdinsight/pageblob-configure-4.3.2.sh",
"roles": ["edgenode"]
},
{
"name": "[concat('cdap-install-v0','-' ,uniquestring(variables('applicationName')))]",
"uri": "http://downloads.cask.co/hdinsight/install-4.3.2-SNAPSHOT.sh",
"uri": "http://downloads.cask.co/hdinsight/install-4.3.2.sh",
"roles": ["edgenode"]
}],
"uninstallScriptActions": [],
Expand Down
2 changes: 1 addition & 1 deletion cdap-examples/resources/weblog-analytics-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"artifact": {
"name": "cdap-etl-batch",
"scope": "SYSTEM",
"version": "4.3.2-SNAPSHOT"
"version": "4.3.2"
},
"config": {
"source": {
Expand Down
2 changes: 1 addition & 1 deletion cdap-examples/resources/weblog-analytics.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

create app test cdap-etl-batch 4.3.2-SNAPSHOT system \$CDAP_HOME/examples/resources/weblog-analytics-config.json
create app test cdap-etl-batch 4.3.2 system \$CDAP_HOME/examples/resources/weblog-analytics-config.json
load stream logEventStream \$CDAP_HOME/examples/resources/accesslog.txt
start mapreduce test.ETLMapReduce
2 changes: 1 addition & 1 deletion cdap-examples/resources/weblog-service.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

deploy app \$CDAP_HOME/examples/CubeService/target/CubeServiceApp-4.3.2-SNAPSHOT.jar
deploy app \$CDAP_HOME/examples/CubeService/target/CubeServiceApp-4.3.2.jar
start service CubeServiceApp.CubeService
2 changes: 1 addition & 1 deletion cdap-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cdap-ui",
"version": "4.3.2-SNAPSHOT",
"version": "4.3.2",
"description": "Front-end for CDAP",
"scripts": {
"start": "node ./server.js",
Expand Down

0 comments on commit 036fb04

Please sign in to comment.