Skip to content

Commit

Permalink
Release 0.14.2 (#97)
Browse files Browse the repository at this point in the history
* Use pandas concat instead of deprecated append

* Search environment variables when resolving user variables

* FIX #97  - Bump version and CHANGELOG for release 0.14.2

---------

Co-authored-by: Grzegorz Kołakowski <grzegorz.kolakowski@getindata.com>
Co-authored-by: github-actions <github-actions@github.com>
  • Loading branch information
3 people authored Sep 15, 2023
1 parent fcbbda3 commit 0c3d5de
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [0.14.2] - 2023-09-15

### Added

- Search environment variables when resolving user variables.

## [0.14.1] - 2023-06-28

### Fixed
Expand Down Expand Up @@ -225,7 +231,9 @@

- First release

[Unreleased]: https://github.com/getindata/streaming-jupyter-integrations/compare/0.14.1...HEAD
[Unreleased]: https://github.com/getindata/streaming-jupyter-integrations/compare/0.14.2...HEAD

[0.14.2]: https://github.com/getindata/streaming-jupyter-integrations/compare/0.14.1...0.14.2

[0.14.1]: https://github.com/getindata/streaming-jupyter-integrations/compare/0.14.0...0.14.1

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.14.1
current_version = 0.14.2

[tox:tox]
envlist = py38
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from setuptools import find_packages, setup
from setuptools.command.install import install

__version__ = "0.14.1"
__version__ = "0.14.2"

HERE = Path(__file__).parent.resolve()

Expand Down
2 changes: 1 addition & 1 deletion streaming_jupyter_integrations/magics.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ def __handle_done(self, fut: Any) -> None:

def __enrich_cell(self, cell: str) -> str:
enriched_cell = CellContentFormatter(
cell, {**self.shell.user_ns, **self._secrets}
cell, {**os.environ, **self.shell.user_ns, **self._secrets}
).substitute_user_variables()
joined_cell = inline_sql_in_cell(enriched_cell)
return joined_cell
Expand Down

0 comments on commit 0c3d5de

Please sign in to comment.