Skip to content

Commit

Permalink
Merge pull request #6 from fugue-project/0.2.1
Browse files Browse the repository at this point in the history
Update Fugue
  • Loading branch information
goodwanghan authored Jan 13, 2023
2 parents 6df14ac + 5213099 commit 3559cca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.2.1

* Upgrade to Fugue 0.8.0

## 0.2.0

* Redesigned Fugue DataFrame rendering
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fugue-jupyter",
"version": "0.2.0",
"version": "0.2.1",
"description": "Jupyterlab Extension for Fugue",
"keywords": [
"jupyter",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get_version() -> str:
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=[
"fugue>=0.8.0.dev1",
"fugue>=0.8.0",
"notebook",
"jupyterlab>=3.0",
"jupyterlab-lsp",
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function end(language: string) {
return `--end-${language}`;
}
function fsql_start() {
return `fsql[\\s\\S]*\\([\\s\\S]*\\"\\"\\"`;
return `(fsql|fugue_sql|fugue_sql_flow)[\\s\\S]*\\([\\s\\S]*\\"\\"\\"`;
}
function fsql_end() {
return `\\"\\"\\"`;
Expand Down

0 comments on commit 3559cca

Please sign in to comment.