From 9975c9a4084a9b9de584363847b7d89086583daa Mon Sep 17 00:00:00 2001 From: Blair Chen Date: Tue, 28 Feb 2023 09:09:38 +0000 Subject: [PATCH] Bump version to 1.0.0 (#1104) --- docs/README.md | 2 +- docs/quickstart_local_sandbox.md | 4 ++-- feathr_project/docs/conf.py | 2 +- feathr_project/feathr/version.py | 2 +- feathr_project/setup.py | 2 +- feathr_project/test/test_user_workspace/feathr_config.yaml | 4 ++-- gradle.properties | 2 +- ui/package-lock.json | 4 ++-- ui/package.json | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/README.md b/docs/README.md index 17a662d27..8cbc3fcb6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -53,7 +53,7 @@ The easiest way to try out Feathr is to use the [Feathr Sandbox](https://feathr- ```bash # 80: Feathr UI, 8888: Jupyter, 7080: Interpret -docker run -it --rm -p 8888:8888 -p 8081:80 -p 7080:7080 -e GRANT_SUDO=yes feathrfeaturestore/feathr-sandbox:releases-v1.0.0-rc4 +docker run -it --rm -p 8888:8888 -p 8081:80 -p 7080:7080 -e GRANT_SUDO=yes feathrfeaturestore/feathr-sandbox:releases-v1.0.0 ``` And you can view default jupyter notebook: diff --git a/docs/quickstart_local_sandbox.md b/docs/quickstart_local_sandbox.md index 80c85ca41..26c61e13b 100644 --- a/docs/quickstart_local_sandbox.md +++ b/docs/quickstart_local_sandbox.md @@ -31,7 +31,7 @@ To get started using Feathr, simply run the command below. Note that the image i ```bash # 80: Feathr UI, 8888: Jupyter, 7080: Interpret -docker run -it --rm -p 8888:8888 -p 8081:80 -p 7080:7080 -e GRANT_SUDO=yes feathrfeaturestore/feathr-sandbox:releases-v1.0.0-rc4 +docker run -it --rm -p 8888:8888 -p 8081:80 -p 7080:7080 -e GRANT_SUDO=yes feathrfeaturestore/feathr-sandbox:releases-v1.0.0 ``` It should pop up a Jupyter link in `http://127.0.0.1:8888/`. Double click on the notebook file to start the Jupyter Notebook, and you should be able to see the Feathr sample notebook. Click the triangle button on the Jupyter notebook and the whole notebook will run locally. @@ -84,7 +84,7 @@ docker build -f FeathrSandbox.Dockerfile -t feathrfeaturestore/feathr-sandbox . By default, Feathr Sandbox uses a SQLite backend in Feathr registry, and the content will be deleted if you restart the container. If you want to use a persistent registry, say a remote MySQL database or SQL Server, you can configure an environment variable when starting the Feathr Sandbox container like below, by specifying `FEATHR_SANDBOX_REGISTRY_URL` environment variable: ```bash -docker run -it --rm -p 8888:8888 -p 8081:80 -p 7080:7080 --env FEATHR_SANDBOX_REGISTRY_URL="mysql://scott:tiger@localhost/foo" -e GRANT_SUDO=yes feathrfeaturestore/feathr-sandbox:releases-v1.0.0-rc4 +docker run -it --rm -p 8888:8888 -p 8081:80 -p 7080:7080 --env FEATHR_SANDBOX_REGISTRY_URL="mysql://scott:tiger@localhost/foo" -e GRANT_SUDO=yes feathrfeaturestore/feathr-sandbox:releases-v1.0.0 ``` Take a look at the [Database URLs](https://docs.sqlalchemy.org/en/20/core/engines.html#database-urls) section for more details on how this URL is formatted. Basically it will be like this: diff --git a/feathr_project/docs/conf.py b/feathr_project/docs/conf.py index f8865f55e..8ca60b7d6 100644 --- a/feathr_project/docs/conf.py +++ b/feathr_project/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '1.0' # The full version, including alpha/beta/rc tags -release = '1.0.0-rc4' +release = '1.0.0' # -- General configuration --------------------------------------------------- diff --git a/feathr_project/feathr/version.py b/feathr_project/feathr/version.py index ef33b3f21..2c1637058 100644 --- a/feathr_project/feathr/version.py +++ b/feathr_project/feathr/version.py @@ -1,4 +1,4 @@ -__version__ = "1.0.0-rc4" +__version__ = "1.0.0" def get_version(): return __version__ diff --git a/feathr_project/setup.py b/feathr_project/setup.py index c72b66eb9..946f13a1f 100644 --- a/feathr_project/setup.py +++ b/feathr_project/setup.py @@ -20,7 +20,7 @@ print("Failed to load Feathr version file for packaging.", file=sys.stderr) # Temp workaround for conda build. For long term fix, Jay will need to update manifest.in file. - VERSION = "1.0.0-rc4" + VERSION = "1.0.0" VERSION = __version__ # noqa os.environ["FEATHR_VERSION"] = VERSION diff --git a/feathr_project/test/test_user_workspace/feathr_config.yaml b/feathr_project/test/test_user_workspace/feathr_config.yaml index fb8d182c1..f243c1fa8 100644 --- a/feathr_project/test/test_user_workspace/feathr_config.yaml +++ b/feathr_project/test/test_user_workspace/feathr_config.yaml @@ -83,7 +83,7 @@ spark_config: # 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://public@azurefeathrstorage.blob.core.windows.net/feathr-assembly-LATEST.jar - feathr_runtime_location: "../../build/libs/feathr_2.12-1.0.0-rc4.jar" + feathr_runtime_location: "../../build/libs/feathr_2.12-1.0.0.jar" databricks: # workspace instance workspace_instance_url: 'https://adb-4121774437039026.6.azuredatabricks.net' @@ -93,7 +93,7 @@ spark_config: config_template: {"run_name":"FEATHR_FILL_IN","new_cluster":{"spark_version":"9.1.x-scala2.12","num_workers":1,"spark_conf":{"FEATHR_FILL_IN":"FEATHR_FILL_IN"},"instance_pool_id":"0403-214809-inlet434-pool-l9dj3kwz"},"libraries":[{"jar":"FEATHR_FILL_IN"}, {"maven":"FEATHR_FILL_IN"}],"spark_jar_task":{"main_class_name":"FEATHR_FILL_IN","parameters":["FEATHR_FILL_IN"]}} # Feathr Job location. Support local paths, path start with http(s)://, and paths start with dbfs:/ work_dir: 'dbfs:/feathr_getting_started' - feathr_runtime_location: "../../build/libs/feathr_2.12-1.0.0-rc4.jar" + feathr_runtime_location: "../../build/libs/feathr_2.12-1.0.0.jar" online_store: redis: diff --git a/gradle.properties b/gradle.properties index 34abe86d1..850b969a4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ -version=1.0.0-rc4 +version=1.0.0 SONATYPE_AUTOMATIC_RELEASE=true POM_ARTIFACT_ID=feathr_2.12 diff --git a/ui/package-lock.json b/ui/package-lock.json index 7b4bf93b0..94fb9fe7a 100644 --- a/ui/package-lock.json +++ b/ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "feathr-ui", - "version": "1.0.0-rc4", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "feathr-ui", - "version": "1.0.0-rc4", + "version": "1.0.0", "dependencies": { "@ant-design/icons": "^4.7.0", "@azure/msal-browser": "^2.24.0", diff --git a/ui/package.json b/ui/package.json index 86286632a..820679e73 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "feathr-ui", - "version": "1.0.0-rc4", + "version": "1.0.0", "private": true, "scripts": { "start": "craco start",