diff --git a/docs/release_notes.md b/docs/release_notes.md index f05fad266827..b8611c691d67 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -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) diff --git a/ibis/__init__.py b/ibis/__init__.py index c79d4bbda6ed..36763fe7be6e 100644 --- a/ibis/__init__.py +++ b/ibis/__init__.py @@ -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: diff --git a/pyproject.toml b/pyproject.toml index b5a5a3d2eeff..a11d34e543fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/setup.py b/setup.py index d0f10f5edd7a..ad90bbeb37db 100644 --- a/setup.py +++ b/setup.py @@ -135,7 +135,7 @@ setup_kwargs = { 'name': 'ibis-framework', - 'version': '3.0.1', + 'version': '3.0.2', 'description': 'Productivity-centric Python Big Data Framework', 'long_description': '# Ibis: Expressive analytics in Python at any scale\n\n| Service | Status |\n| -------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| Documentation | [![Documentation Status](https://img.shields.io/badge/docs-docs.ibis--project.org-blue.svg)](http://ibis-project.org) |\n| Conda packages | [![Anaconda-Server Badge](https://anaconda.org/conda-forge/ibis-framework/badges/version.svg)](https://anaconda.org/conda-forge/ibis-framework) |\n| PyPI | [![PyPI](https://img.shields.io/pypi/v/ibis-framework.svg)](https://pypi.org/project/ibis-framework) |\n| Ibis CI | [![Build status](https://github.com/ibis-project/ibis/actions/workflows/ibis-main.yml/badge.svg)](https://github.com/ibis-project/ibis/actions/workflows/ibis-main.yml?query=branch%3Amaster) |\n| Backend CI | [![Build status](https://github.com/ibis-project/ibis/actions/workflows/ibis-backends.yml/badge.svg)](https://github.com/ibis-project/ibis/actions/workflows/ibis-backends.yml?query=branch%3Amaster) |\n| Coverage | [![Codecov branch](https://img.shields.io/codecov/c/github/ibis-project/ibis/master.svg)](https://codecov.io/gh/ibis-project/ibis) |\n\nIbis is a Python library to help you write expressive analytics at any scale,\nsmall to large. Its goal is to simplify analytical workflows and make you more\nproductive.\n\nInstall Ibis from PyPI with:\n\n```sh\npip install ibis-framework\n```\n\nor from conda-forge with\n\n```sh\nconda install ibis-framework -c conda-forge\n```\n\nIbis provides tools for interacting with the following systems:\n\n- [Apache Impala](https://ibis-project.org/docs/latest/backends/Impala/)\n- [Google BigQuery](https://github.com/ibis-project/ibis-bigquery)\n- [ClickHouse](https://ibis-project.org/docs/latest/backends/ClickHouse/)\n- [Dask](https://ibis-project.org/docs/latest/backends/Dask/)\n- [DuckDB](https://ibis-project.org/docs/latest/backends/DuckDB/)\n- [MySQL](https://ibis-project.org/docs/latest/backends/MySQL/)\n- [Pandas](https://ibis-project.org/docs/latest/backends/Pandas/)\n- [PostgreSQL](https://ibis-project.org/docs/latest/backends/PostgreSQL/)\n- [PySpark](https://ibis-project.org/docs/latest/backends/PySpark/)\n- [SQLite](https://ibis-project.org/docs/latest/backends/SQLite/)\n\nLearn more about using the library at https://ibis-project.org.\n', 'author': 'Ibis Contributors',