Skip to content

Commit

Permalink
Merge pull request #100 from getindata/release-0.14.3
Browse files Browse the repository at this point in the history
Release 0.14.3
  • Loading branch information
grzegorz8 authored Sep 18, 2023
2 parents 5044766 + 398c948 commit 83f3607
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 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.3] - 2023-09-18

### Fixed

- Fix pandas DataFrame row numbers.

## [0.14.2] - 2023-09-15

### Added
Expand Down Expand Up @@ -231,7 +237,9 @@

- First release

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

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

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

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.2
current_version = 0.14.3

[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.2"
__version__ = "0.14.3"

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

Expand Down
4 changes: 2 additions & 2 deletions streaming_jupyter_integrations/magics.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ def row_reader() -> None:
if display_row_kind:
res = [result.get_row_kind()] + res
a_series = pd.Series(res, index=df.columns)
df = pd.concat([df, pd.DataFrame.from_records([a_series])])
df = pd.concat([df, pd.DataFrame.from_records([a_series])], ignore_index=True)
rows_counter.value += 1
if display_handle is None:
display_handle = display.display(df, display_id=True)
Expand All @@ -569,7 +569,7 @@ def row_reader() -> None:
series = pd.Series(
[pyflink_result_kind_to_string(result_kind)], index=df.columns
)
df = pd.concat([df, pd.DataFrame.from_records([series])])
df = pd.concat([df, pd.DataFrame.from_records([series])], ignore_index=True)
display.display(df)

self.shell.user_ns["execution_result"] = df
Expand Down

0 comments on commit 83f3607

Please sign in to comment.