Skip to content

Commit

Permalink
bump version (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyongzhu authored Jun 2, 2022
1 parent 3dc3549 commit 1285ff7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ThisBuild / resolvers += Resolver.mavenLocal
ThisBuild / scalaVersion := "2.12.15"
ThisBuild / version := "0.4.0"
ThisBuild / version := "0.5.0"
ThisBuild / organization := "com.linkedin.feathr"
ThisBuild / organizationName := "linkedin"
val sparkVersion = "3.1.3"
Expand Down Expand Up @@ -83,7 +83,7 @@ lazy val root = (project in file("."))
// )

// To assembly with certain java version: sbt assembly -java-home "/Library/Java/JavaVirtualMachines/jdk1.8.0_282-msft.jdk/Contents/Home"
// To execute the jar: java -jar target/scala-2.12/feathr-assembly-0.4.0-SNAPSHOT.jar
// To execute the jar: java -jar target/scala-2.12/feathr-assembly-0.5.0-SNAPSHOT.jar

assembly / assemblyMergeStrategy := {
// See https://stackoverflow.com/questions/17265002/hadoop-no-filesystem-for-scheme-file
Expand Down
2 changes: 1 addition & 1 deletion feathr_project/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='feathr',
version='0.4.0',
version='0.5.0',
long_description=long_description,
long_description_content_type="text/markdown",
author_email="[email protected]",
Expand Down
6 changes: 3 additions & 3 deletions feathr_project/test/test_user_workspace/feathr_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ spark_config:
executor_num: 4
# Feathr Job configuration. Support local paths, path start with http(s)://, and paths start with abfs(s)://
# this is the default location so end users don't have to compile the runtime again.
# feathr_runtime_location: wasbs://[email protected]/feathr-assembly-0.4.0-SNAPSHOT.jar
feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.4.0.jar"
# feathr_runtime_location: wasbs://[email protected]/feathr-assembly-0.5.0-SNAPSHOT.jar
feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.5.0.jar"
databricks:
# workspace instance
workspace_instance_url: 'https://adb-5638037984879289.9.azuredatabricks.net/'
Expand All @@ -92,7 +92,7 @@ spark_config:
# Feathr Job location. Support local paths, path start with http(s)://, and paths start with dbfs:/
work_dir: 'dbfs:/feathr_getting_started'
# this is the default location so end users don't have to compile the runtime again.
feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.4.0.jar"
feathr_runtime_location: "../../target/scala-2.12/feathr-assembly-0.5.0.jar"

online_store:
redis:
Expand Down

0 comments on commit 1285ff7

Please sign in to comment.