Showing with 16 additions and 5 deletions.
  1. +1 −1 .releaserc.json
  2. +3 −1 ci/release/prepare.sh
  3. +3 −1 docs/source/conf.py
  4. +7 −0 docs/web/release_notes.md
  5. +1 −1 pyproject.toml
  6. +1 −1 setup.py
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
[
"@semantic-release/git",
{
"assets": ["pyproject.toml", "docs/web/release_notes.md"],
"assets": ["pyproject.toml", "docs/web/release_notes.md", "setup.py"],
"message": "chore(release): ${nextRelease.version}"
}
]
Expand Down
4 changes: 3 additions & 1 deletion ci/release/prepare.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#!/usr/bin/env nix-shell
#!nix-shell --pure -p poetry -i bash
#!nix-shell -p poetry nix -i bash
# shellcheck shell=bash

set -euo pipefail

# set version
poetry version "$1"

./dev/poetry2setup -o setup.py

# build artifacts
poetry build
4 changes: 3 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
import glob
import os

import ibis

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand Down Expand Up @@ -65,7 +67,7 @@
# built documents.
#
# The short X.Y version.
version = '2.0.0'
version = ibis.__version__

# The full version, including alpha/beta/rc tags.
release = version
Expand Down
7 changes: 7 additions & 0 deletions docs/web/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release Notes
---

## [2.1.1](https://github.com/ibis-project/ibis/compare/2.1.0...2.1.1) (2022-01-12)


### Bug Fixes

* **setup.py:** set the correct version number for 2.1.0 ([f3d267b](https://github.com/ibis-project/ibis/commit/f3d267b96b9f14d3616c17b8f7bdeb8d0a6fc2cf))

# [2.1.0](https://github.com/ibis-project/ibis/compare/2.0.0...2.1.0) (2022-01-12)


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 = "2.1.0"
version = "2.1.1"
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.