Skip to content

Commit a61a4f5

Browse files
committed
update app version
Signed-off-by: Manuel Carmona <manu.carmona90@gmail.com>
1 parent 7a6de85 commit a61a4f5

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ SPARK_MASTER ?= "local[*]"
1616
NUM_EXECUTORS ?= 1
1717
EXECUTOR_MEM ?= 1G
1818
EXECUTORS_CORES ?= 4
19-
UBER_JAR = "target/scala-2.11/queryset-0.1.0.jar"
19+
APP_VERSION = 0.2.0
20+
UBER_JAR = "target/scala-2.11/queryset-$(APP_VERSION).jar"
2021
REPOS_PATH ?= "src/main/resources/siva-files"
2122
REPOS_FORMAT ?= "siva"
2223
APP_ARGS = $(REPOS_PATH) $(REPOS_FORMAT)

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Dependencies._
33
lazy val commonSettings = Seq(
44
organization := "tech.sourced",
55
scalaVersion := "2.11.12",
6-
version := "0.1.0"
6+
version := "0.2.0"
77
)
88

99
lazy val root = (project in file("."))

0 commit comments

Comments
 (0)