From f478c2819f74d75f3b959f243186cc94f1f705d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 21:23:59 -0400 Subject: [PATCH] chore(main): release 1.0.0 (#58) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ pyproject.toml | 2 +- workflow/__init__.py | 2 +- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ac5bc7..603ce2f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "0.10.0", + ".": "1.0.0", "packages": { ".": { "extra-files": [ diff --git a/CHANGELOG.md b/CHANGELOG.md index 13ab749..a8bcc0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [1.0.0](https://github.com/CHIMEFRB/workflow/compare/v0.10.0...v1.0.0) (2024-06-18) + + +### ⚠ BREAKING CHANGES + +* **http:** work object by default only instantiates a buckets connection in the http context +* **workspace:** this change marks a departure from multiple config files and assumed that default workspace is always set + +### Features + +* **http:** httpcontext now supports requesting individual backends ([569d502](https://github.com/CHIMEFRB/workflow/commit/569d50205a1466627ad712a7c13db50860e8afe4)) +* **workspace:** consolidated all workflow settings under single workspace file ([3f616ab](https://github.com/CHIMEFRB/workflow/commit/3f616aba86fedddcf5cb04524a8cce5b3b23dc16)) + + +### Bug Fixes + +* **http:** removed the clients dependency read workspace ([afd2273](https://github.com/CHIMEFRB/workflow/commit/afd227302263816f83bcab47487f2e12d2ff6c47)) +* **utils:** reading workspace from a url now properly works ([ac6f890](https://github.com/CHIMEFRB/workflow/commit/ac6f8909bd6d0441978c0a592581a9f83af94ca6)) +* **workspace:** fixed spelling error ([a52c9ca](https://github.com/CHIMEFRB/workflow/commit/a52c9caaedaf092f964fff1b5cb88733832207ab)) +* **workspace:** fixed urls for dev workspace ([e789499](https://github.com/CHIMEFRB/workflow/commit/e789499a3efd745113255a49d5a2a6a883005826)) +* **work:** work now attemps to reuse http context ([7df33e4](https://github.com/CHIMEFRB/workflow/commit/7df33e4b9a46cbde2dff8cb26e0e14673222b21f)) + ## [0.10.0](https://github.com/CHIMEFRB/workflow/compare/v0.9.1...v0.10.0) (2024-06-13) diff --git a/pyproject.toml b/pyproject.toml index c5d903d..6d62b96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "workflow" -version = "0.10.0" +version = "1.0.0" description = "Workflow Core" authors = ["Shiny Brar "] license = "MIT" diff --git a/workflow/__init__.py b/workflow/__init__.py index 726c445..35163c8 100644 --- a/workflow/__init__.py +++ b/workflow/__init__.py @@ -14,4 +14,4 @@ # Active Workspace Path DEFAULT_WORKSPACE_PATH: Path = CONFIG_PATH / "workspace.yml" # Workflow Client Version -__version__ = "0.10.0" # {x-release-please-version} +__version__ = "1.0.0" # {x-release-please-version}