Skip to content

Commit

Permalink
Release 0.25.1 (#108)
Browse files Browse the repository at this point in the history
* chore: downgrade version to properly prepare release

* chore(docs): fix date in changelog

* BI deployment is disabled when config is missing (#95)

* DATA-629: Added Airbyte configuration documentation (#97)

* feat: disable sync bucket (#102)

* chore: add flag to turn off bucket syncing with artefacts

* chore: replace default value

* chore(docs): updat changelog

* fix: add readthedocs config file

* chore: repair failing tests

* feat: add test for sync_bucket

* chore(docs): cosmetic changes in changelog

* chore: rename `sync-bucket` to `disable-bucket-sync`

* chore(docs): update with flag

* chore: replace `sync_bucket` with `disable_bucket_sync`

* chore: update name for `_bucket_sync`

---------

Co-authored-by: Piotr Sierkin <piotr.sierkin@getindata.com>

* Fix failing readthedocs builds (#104)

* Removed sphinx action from prepare-release pipeline (#105)

* Bump werkzeug from 2.2.2 to 2.2.3 (#106)

Bumps [werkzeug](https://github.com/pallets/werkzeug) from 2.2.2 to 2.2.3.
- [Release notes](https://github.com/pallets/werkzeug/releases)
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
- [Commits](pallets/werkzeug@2.2.2...2.2.3)

---
updated-dependencies:
- dependency-name: werkzeug
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* bump codeclimate-action to 4.0.0

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Pawel Jurkiewicz <pawel.jurkiewicz94@gmail.com>

* FIX #108  - Bump version and CHANGELOG for release 0.25.1

* removed trailing characters from CHANGELOG.md

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Piotr Pękala <piotr.pekala@getindata.com>
Co-authored-by: Piotr Sierkin <psierkin@gmail.com>
Co-authored-by: Piotr Sierkin <piotr.sierkin@getindata.com>
Co-authored-by: Pawel Jurkiewicz <pawel.jurkiewicz94@gmail.com>
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
7 people committed May 16, 2023
1 parent 9f04aad commit b259f91
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 23 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ jobs:
uses: thomaseizinger/keep-a-changelog-new-release@v1
with:
version: ${{ steps.bump_version.outputs.package_version }}
- name: Ensure source docs are updated
uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/"
build-command: "make apidoc html"
- name: Create a new release branch
run: |
git config user.name github-actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
tox
- name: Report coverage
uses: paambaati/codeclimate-action@v2.7.5
uses: paambaati/codeclimate-action@v4.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE }}
with:
Expand Down
7 changes: 5 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.11"
python: "3.10"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand All @@ -18,4 +18,7 @@ sphinx:
# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: docs/requirements.txt
- method: pip
path: .
extra_requirements:
- docs
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.25.1] - 2023-05-16

### Fixed

- Failing readthedocs documentation build resulting in empty pages

## [0.25.0] - 2023-05-15

### Added
Expand Down Expand Up @@ -249,7 +255,9 @@
- Draft of `dp init`, `dp create`, `dp template new`, `dp template list` and `dp dbt`
- Draft of `dp compile` and `dp deploy`

[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.25.0...HEAD
[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.25.1...HEAD

[0.25.1]: https://github.com/getindata/data-pipelines-cli/compare/0.25.0...0.25.1

[0.25.0]: https://github.com/getindata/data-pipelines-cli/compare/0.24.2...0.25.0

Expand Down
2 changes: 1 addition & 1 deletion data_pipelines_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
pipelines.
"""

version = "0.25.0"
version = "0.25.1"
8 changes: 0 additions & 8 deletions docs/requirements.txt

This file was deleted.

4 changes: 2 additions & 2 deletions docs/setup_environment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ The repository should contain ``dp.yml.tmpl`` file looking similar to this:

.. code-block:: yaml
_templates_suffix: ".tmpl"
_envops:
_templates_suffix: ".tmpl"
_envops:
autoescape: false
block_end_string: "%]"
block_start_string: "[%"
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.25.0
current_version = 0.25.1

[bumpversion:file:setup.py]

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

INSTALL_REQUIREMENTS = [
"MarkupSafe==2.1.1",
"Werkzeug==2.2.2",
"Werkzeug==2.2.3",
"click==8.1.3",
"pyyaml==6.0",
"types-PyYAML==6.0.12.2",
Expand Down Expand Up @@ -61,13 +61,14 @@
"myst-parser==0.18.1",
"GitPython==3.1.29",
"colorama==0.4.5",
"pytz==2023.3",
],
**EXTRA_FILESYSTEMS_REQUIRE,
}

setup(
name="data_pipelines_cli",
version="0.25.0",
version="0.25.1",
description="CLI for data platform",
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit b259f91

Please sign in to comment.