diff --git a/CHANGELOG.md b/CHANGELOG.md index daeb6016..1c976ad7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ You must follow the format of `## [VERSION-NUMBER]` for the GitHub workflow to pick up the text. +## [0.1.8] - 2024-04-23 +### Updates +- run select against given cols in semantic model for validation + ## [0.1.7] - 2024-04-18 ### Updates - Parse yaml model into protos, validate cols and col naming diff --git a/README.md b/README.md index c03383d8..029c9044 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ All generated semantic models by default are saved under `semantic_model_generat 1. Ensure you have installed the Python package. Note, the version below should be the latest version under the `dist/` directory. ```bash -pip install dist/semantic_model_generator-0.1.7-py3-none-any.whl +pip install dist/semantic_model_generator-0.1.8-py3-none-any.whl ``` 2. Activate Python shell ```bash diff --git a/dist/semantic_model_generator-0.1.7.tar.gz b/dist/semantic_model_generator-0.1.7.tar.gz deleted file mode 100644 index 6f194c1f..00000000 Binary files a/dist/semantic_model_generator-0.1.7.tar.gz and /dev/null differ diff --git a/dist/semantic_model_generator-0.1.7-py3-none-any.whl b/dist/semantic_model_generator-0.1.8-py3-none-any.whl similarity index 70% rename from dist/semantic_model_generator-0.1.7-py3-none-any.whl rename to dist/semantic_model_generator-0.1.8-py3-none-any.whl index 537542e7..f3530595 100644 Binary files a/dist/semantic_model_generator-0.1.7-py3-none-any.whl and b/dist/semantic_model_generator-0.1.8-py3-none-any.whl differ diff --git a/dist/semantic_model_generator-0.1.8.tar.gz b/dist/semantic_model_generator-0.1.8.tar.gz new file mode 100644 index 00000000..d35fda0a Binary files /dev/null and b/dist/semantic_model_generator-0.1.8.tar.gz differ diff --git a/pyproject.toml b/pyproject.toml index a67662ca..61745744 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "semantic-model-generator" -version = "0.1.7" +version = "0.1.8" description = "Generate a Semantic Model from your Snowflake tables" authors = ["Jonathan Hilgart ", "Nipun Sehrawat ", "Renee Huang ", "Nicole Limtiaco "] license = "Apache Software License; BSD License"