Showing with 11 additions and 4 deletions.
  1. +7 −0 docs/release_notes.md
  2. +1 −1 ibis/__init__.py
  3. +1 −1 pyproject.toml
  4. +1 −1 setup.py
  5. +1 −1 shell.nix
7 changes: 7 additions & 0 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release Notes
---

### [3.0.2](https://github.com/ibis-project/ibis/compare/3.0.1...3.0.2) (2022-04-28)


### Bug Fixes

* **docs:** fix tempdir location for docs build ([dcd1b22](https://github.com/ibis-project/ibis/commit/dcd1b226903db9d589a40ccd987280de0c8362e3))

### [3.0.1](https://github.com/ibis-project/ibis/compare/3.0.0...3.0.1) (2022-04-28)


Expand Down
2 changes: 1 addition & 1 deletion ibis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
__all__ = ['api', 'ir', 'util', 'IbisError', 'options']
__all__ += api.__all__

__version__ = "3.0.1"
__version__ = "3.0.2"


def __getattr__(name: str) -> BaseBackend:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ibis-framework"
version = "3.0.1"
version = "3.0.2"
packages = [{ include = "ibis" }]
homepage = "https://ibis-project.org"
repository = "https://github.com/ibis-project/ibis"
Expand Down
2 changes: 1 addition & 1 deletion setup.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ let
# indavertently preventing this.
export PYTHONPATH TEMPDIR
PYTHONPATH="$(python -c 'import os, sys; print(os.pathsep.join(sys.path))')"
TEMPDIR="$(mktemp -d)"
TEMPDIR="$(python -c 'import tempfile; print(tempfile.gettempdir())')"
mike "$@"
'';
Expand Down