Skip to content

Commit

Permalink
prepare release 3.2.2
Browse files Browse the repository at this point in the history
* Fix format issue(s) in changelog
* Adjust changelog fragment template
* Improve gh actions to catch failing doc build earlier
* Bump version to 3.2.2
  • Loading branch information
Nicoretti authored Aug 12, 2022
1 parent a444456 commit 4235290
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 11 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,33 @@ on:
- '**'

jobs:

build_docs:
runs-on: ubuntu-latest
name: build_docs

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Poetry
uses: snok/install-poetry@v1

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: Install Dependencies
run: |
poetry install
- name: Build Documentation
run: |
poetry run python -m nox -s build-docs
run_tests:
runs-on: ubuntu-latest
needs: build_docs
strategy:
fail-fast: false
matrix:
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,33 @@ on:
- cron: "0 0 1/7 * *"

jobs:

build_docs:
runs-on: ubuntu-latest
name: build_docs

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Poetry
uses: snok/install-poetry@v1

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: Install Dependencies
run: |
poetry install
- name: Build Documentation
run: |
poetry run python -m nox -s build-docs
run_tests:
runs-on: ubuntu-latest
needs: build_docs
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install Dependencies
run: |
poetry install
- name: Build Documenations
- name: Build Documentations
run: |
poetry run python -m nox -s build-docs
touch doc/build/.nojekyll
Expand Down
8 changes: 4 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

.. _changelog-3.2.1:

3.2.1 — 2022-08-12
3.2.2 — 2022-08-12
==================

✨ Added
-------
--------
- Added turbodbc support
* Re-enabled with new minimum base version 4.5.4
- Added additional information to README
Expand All @@ -14,9 +14,9 @@
* Linting score of the project

🔧 Changed
---------
----------
- Changed changelog format
- Changelog now can be found in the file CHANGELOG.rst
* Changelog now can be found in the file CHANGELOG.rst
- Reworked and restructured project documentation

🗑️ Removed
Expand Down
8 changes: 4 additions & 4 deletions changelog.d/templates/fragment-template.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@
.. - A bullet item for the Removed category.
..
.. ✨ Added
.. --------
.. ---------
..
.. - A bullet item for the Added category.
..
.. 🔧 Changed
.. ----------
.. -----------
..
.. - A bullet item for the Changed category.
..
.. 🚧 Deprecated
.. -------------
.. --------------
..
.. - A bullet item for the Deprecated category.
..
.. 🐞 Fixed
.. --------
.. ---------
..
.. - A bullet item for the Fixed category.
..
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "sqlalchemy_exasol"
version = "3.2.1"
version = "3.2.2"
description = "EXASOL dialect for SQLAlchemy"
readme = "README.rst"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion sqlalchemy_exasol/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

MAJOR = 3
MINOR = 2
PATCH = 1
PATCH = 2

VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

0 comments on commit 4235290

Please sign in to comment.