Skip to content

Commit b259f91

Browse files
github-actions[bot]p-pekalaSanthinPiotrSierkin-Kipaszynski
authored
Release 0.25.1 (#108)
* 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 <[email protected]> * 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] <[email protected]> * bump codeclimate-action to 4.0.0 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pawel Jurkiewicz <[email protected]> * FIX #108 - Bump version and CHANGELOG for release 0.25.1 * removed trailing characters from CHANGELOG.md --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Piotr Pękala <[email protected]> Co-authored-by: Piotr Sierkin <[email protected]> Co-authored-by: Piotr Sierkin <[email protected]> Co-authored-by: Pawel Jurkiewicz <[email protected]> Co-authored-by: github-actions <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9f04aad commit b259f91

File tree

9 files changed

+22
-23
lines changed

9 files changed

+22
-23
lines changed

.github/workflows/prepare-release.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ jobs:
3636
uses: thomaseizinger/keep-a-changelog-new-release@v1
3737
with:
3838
version: ${{ steps.bump_version.outputs.package_version }}
39-
- name: Ensure source docs are updated
40-
uses: ammaraskar/sphinx-action@master
41-
with:
42-
docs-folder: "docs/"
43-
build-command: "make apidoc html"
4439
- name: Create a new release branch
4540
run: |
4641
git config user.name github-actions

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
tox
4343
4444
- name: Report coverage
45-
uses: paambaati/codeclimate-action@v2.7.5
45+
uses: paambaati/codeclimate-action@v4.0.0
4646
env:
4747
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE }}
4848
with:

.readthedocs.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version: 2
99
build:
1010
os: ubuntu-22.04
1111
tools:
12-
python: "3.11"
12+
python: "3.10"
1313

1414
# Build documentation in the docs/ directory with Sphinx
1515
sphinx:
@@ -18,4 +18,7 @@ sphinx:
1818
# Optionally declare the Python requirements required to build your docs
1919
python:
2020
install:
21-
- requirements: docs/requirements.txt
21+
- method: pip
22+
path: .
23+
extra_requirements:
24+
- docs

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [0.25.1] - 2023-05-16
6+
7+
### Fixed
8+
9+
- Failing readthedocs documentation build resulting in empty pages
10+
511
## [0.25.0] - 2023-05-15
612

713
### Added
@@ -249,7 +255,9 @@
249255
- Draft of `dp init`, `dp create`, `dp template new`, `dp template list` and `dp dbt`
250256
- Draft of `dp compile` and `dp deploy`
251257

252-
[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.25.0...HEAD
258+
[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.25.1...HEAD
259+
260+
[0.25.1]: https://github.com/getindata/data-pipelines-cli/compare/0.25.0...0.25.1
253261

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

data_pipelines_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
pipelines.
66
"""
77

8-
version = "0.25.0"
8+
version = "0.25.1"

docs/requirements.txt

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/setup_environment.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ The repository should contain ``dp.yml.tmpl`` file looking similar to this:
2929

3030
.. code-block:: yaml
3131
32-
_templates_suffix: ".tmpl"
33-
_envops:
32+
_templates_suffix: ".tmpl"
33+
_envops:
3434
autoescape: false
3535
block_end_string: "%]"
3636
block_start_string: "[%"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.25.0
2+
current_version = 0.25.1
33

44
[bumpversion:file:setup.py]
55

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
INSTALL_REQUIREMENTS = [
99
"MarkupSafe==2.1.1",
10-
"Werkzeug==2.2.2",
10+
"Werkzeug==2.2.3",
1111
"click==8.1.3",
1212
"pyyaml==6.0",
1313
"types-PyYAML==6.0.12.2",
@@ -61,13 +61,14 @@
6161
"myst-parser==0.18.1",
6262
"GitPython==3.1.29",
6363
"colorama==0.4.5",
64+
"pytz==2023.3",
6465
],
6566
**EXTRA_FILESYSTEMS_REQUIRE,
6667
}
6768

6869
setup(
6970
name="data_pipelines_cli",
70-
version="0.25.0",
71+
version="0.25.1",
7172
description="CLI for data platform",
7273
long_description=README,
7374
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)