Skip to content

Commit

Permalink
Prepare for release of 1.4.1 (#7761)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Dec 5, 2022
1 parent 8c20b62 commit f6648e4
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 28 deletions.
54 changes: 27 additions & 27 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ orbs:
workflows:
version: 2

'Run tests':
"Run tests":
jobs:
- test_37
- test_38
Expand All @@ -570,50 +570,50 @@ workflows:
- test_vanilla_prefect
- test_task_library

'Check code style and docs':
"Check code style and docs":
jobs:
- check_static_analysis
- check_documentation

'Build and publish development artifacts':
"Build and publish development artifacts":
jobs:
- build_dev_docker_image:
python_version: '3.7'
extras: 'all_orchestration_extras'
python_version: "3.7"
extras: "all_orchestration_extras"
filters:
branches:
only: '1.x'
only: "1.x"

'Build and publish release artifacts':
"Build and publish release artifacts":
jobs:
- build_docker_image:
python_version: '3.7'
extras: 'all_orchestration_extras'
python_version: "3.7"
extras: "all_orchestration_extras"
tag_latest: true
filters:
branches:
ignore: /.*/
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
- build_docker_image:
python_version: '3.8'
extras: 'all_orchestration_extras'
python_version: "3.8"
extras: "all_orchestration_extras"
filters:
branches:
ignore: /.*/
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
- build_docker_image:
python_version: '3.9'
extras: 'all_orchestration_extras'
python_version: "3.9"
extras: "all_orchestration_extras"
filters:
branches:
ignore: /.*/
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
- build_docker_image:
python_version: '3.10'
extras: 'all_orchestration_extras'
python_version: "3.10"
extras: "all_orchestration_extras"
filters:
branches:
ignore: /.*/
Expand All @@ -626,15 +626,15 @@ workflows:
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
- build_core_docker_image:
python_version: '3.9'
python_version: "3.9"
tag_latest: true
filters:
branches:
ignore: /.*/
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
- build_core_docker_image:
python_version: '3.10'
python_version: "3.10"
tag_latest: true
filters:
branches:
Expand All @@ -651,32 +651,32 @@ workflows:
# RC -----

- build_docker_image:
python_version: '3.7'
extras: 'all_orchestration_extras'
python_version: "3.7"
extras: "all_orchestration_extras"
filters:
branches:
ignore: /.*/
tags:
only: /^1.0rc[0-9]$/
- build_docker_image:
python_version: '3.8'
extras: 'all_orchestration_extras'
python_version: "3.8"
extras: "all_orchestration_extras"
filters:
branches:
ignore: /.*/
tags:
only: /^1.0rc[0-9]$/
- build_docker_image:
python_version: '3.9'
extras: 'all_orchestration_extras'
python_version: "3.9"
extras: "all_orchestration_extras"
filters:
branches:
ignore: /.*/
tags:
only: /^1.0rc[0-9]$/
- build_docker_image:
python_version: '3.10'
extras: 'all_orchestration_extras'
python_version: "3.10"
extras: "all_orchestration_extras"
filters:
branches:
ignore: /.*/
Expand All @@ -689,14 +689,14 @@ workflows:
tags:
only: /^1.0rc[0-9]$/
- build_core_docker_image:
python_version: '3.9'
python_version: "3.9"
filters:
branches:
ignore: /.*/
tags:
only: /^1.0rc[0-9]$/
- build_core_docker_image:
python_version: '3.10'
python_version: "3.10"
filters:
branches:
ignore: /.*/
Expand Down
4 changes: 3 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ ignore =
W503,
W504,
# Redefinition of unused import
F811
F811,
# Unused imports
F401

# black is set to 88, but isn't a strict limit so we add some wiggle room for
# flake8 testing.
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 1.4.1 <Badge text="beta" type="success" />

Released on December 5, 2022.

### Fixes

- Fix upper bound on Kubernetes requirement — [#7397](https://github.com/PrefectHQ/prefect/pull/7397)
- Ensure that Dask callbacks are attached during concurrent usage — [#7669](https://github.com/PrefectHQ/prefect/pull/7669)

### Task library

- Add `CubePreAggregationsBuildTask` task — [#7168](https://github.com/PrefectHQ/prefect/pull/7168)
- Add `upload_options` support to the `S3Upload1 task — [#7467](https://github.com/PrefectHQ/prefect/pull/7467)

## 1.4.0 <Badge text="beta" type="success" />

Released on September 19, 2022.
Expand Down

0 comments on commit f6648e4

Please sign in to comment.