Skip to content

Commit dc0f01a

Browse files
[MINOR] Use uc.version (0.3.0-SNAPSHOT can be built from the repo)
1 parent 97fe981 commit dc0f01a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

docs/demo/crud-external-delta-table.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,12 +198,12 @@ Table written to successfully at: file:///tmp/delta_table/
198198

199199
## Spark Connector
200200

201-
=== "Spark 3.5.1 + Delta Lake 3.2.0"
201+
=== "Spark 3.5.1 + Delta Lake {{ delta.version }}"
202202

203203
``` bash
204204
./bin/spark-shell \
205205
--packages \
206-
io.delta:delta-spark_2.13:3.2.0,io.unitycatalog:unitycatalog-spark:0.2.0-SNAPSHOT \
206+
io.delta:delta-spark_2.13:{{ delta.version }},io.unitycatalog:unitycatalog-spark:{{ uc.version }} \
207207
--conf spark.sql.extensions=io.delta.sql.DeltaSparkSessionExtension \
208208
--conf spark.sql.catalog.spark_catalog=io.unitycatalog.connectors.spark.UCSingleCatalog \
209209
--conf spark.sql.catalog.spark_catalog.uri=http://localhost:8080 \

docs/demo/spark-connector-and-external-tables-on-aws-s3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ hide:
1111
``` bash
1212
./bin/spark-sql \
1313
--name "uc-external-tables-s3" \
14-
--packages "org.apache.hadoop:hadoop-aws:3.3.4,io.delta:delta-spark_{{ scala.version }}:{{ delta.version }},io.unitycatalog:unitycatalog-spark_{{ scala.version }}:0.2.0-SNAPSHOT" \
14+
--packages "org.apache.hadoop:hadoop-aws:3.3.4,io.delta:delta-spark_{{ scala.version }}:{{ delta.version }},io.unitycatalog:unitycatalog-spark_{{ scala.version }}:{{ uc.version }}" \
1515
--conf "spark.sql.extensions=io.delta.sql.DeltaSparkSessionExtension" \
1616
--conf "spark.sql.catalog.spark_catalog=io.unitycatalog.spark.UCSingleCatalog" \
1717
--conf "spark.hadoop.fs.s3.impl=org.apache.hadoop.fs.s3a.S3AFileSystem" \

docs/docker/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ As of [this commit]({{ uc.commit }}/7564c7771ed655feb11ba3d5789fd3b7065a99ee), U
1717
```console
1818
$ docker image ls --filter=reference='unitycatalog:*'
1919
REPOSITORY TAG IMAGE ID CREATED SIZE
20-
unitycatalog 0.2.0-SNAPSHOT c788d0d453b6 8 minutes ago 329MB
20+
unitycatalog {{ uc.version }} c788d0d453b6 8 minutes ago 329MB
2121
```
2222

2323
```console

docs/features/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ OpenJDK Runtime Environment Zulu17.52+17-CA (build 17.0.12+7-LTS)
4747
OpenJDK 64-Bit Server VM Zulu17.52+17-CA (build 17.0.12+7-LTS, mixed mode, sharing)
4848
```
4949

50-
```text
51-
$ ./bin/start-uc-server
50+
``` text
51+
./bin/start-uc-server
5252
###################################################################
5353
# _ _ _ _ _____ _ _ #
5454
# | | | | (_) | / ____| | | | | #
@@ -57,20 +57,20 @@ $ ./bin/start-uc-server
5757
# | |__| | | | | | |_| |_| | | |___| (_| | || (_| | | (_) | (_| | #
5858
# \____/|_| |_|_|\__|\__, | \_____\__,_|\__\__,_|_|\___/ \__, | #
5959
# __/ | __/ | #
60-
# |___/ v0.2.0-SNAPSHOT |___/ #
60+
# |___/ v0.3.0-SNAPSHOT |___/ #
6161
###################################################################
6262
```
6363

64-
```text
65-
$ ./bin/uc
64+
``` text
65+
./bin/uc
6666
Please provide a entity.
6767
6868
Usage: bin/uc <entity> <operation> [options]
69-
Entities: schema, volume, catalog, function, table
69+
Entities: schema, volume, model_version, auth, catalog, function, permission, registered_model, user, table
7070
7171
By default, the client will connect to UC running locally at http://localhost:8080
7272
73-
To connect to specific UC server, use --server https://<host>
73+
To connect to specific UC server, use --server https://<host>:<port>
7474
7575
Currently, auth using bearer token is supported. Please specify the token via --auth_token <PAT Token>
7676

0 commit comments

Comments
 (0)