diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e8007243..dad5073d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -94,7 +94,7 @@ jobs: - name: store coverage files uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-${{ matrix.python-version }} path: .coverage* retention-days: 1 @@ -111,7 +111,8 @@ jobs: - name: get coverage files uses: actions/download-artifact@v4 with: - name: coverage + pattern: coverage-* + merge-multiple: true - name: Install Dependencies run: pip install hatch - name: Coverage Report diff --git a/docs/changelog/index.md b/docs/changelog/index.md index bd51cd14..cd5384ee 100644 --- a/docs/changelog/index.md +++ b/docs/changelog/index.md @@ -7,9 +7,16 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.13.0-rc2] - 2023-01-14 + ### Added -* Refactor TinyMCEEditorField: support custom TinyMCE configuration by [@hasansezertasan](https://github.com/hasansezertasan) +* Add a search bar on detail page to search by attributes or values + by [@hasansezertasan](https://github.com/hasansezertasan) + in [#461](https://github.com/jowilf/starlette-admin/pull/461) + +* Refactor TinyMCEEditorField: support custom TinyMCE configuration + by [@hasansezertasan](https://github.com/hasansezertasan) in [#380](https://github.com/jowilf/starlette-admin/pull/380) ## [0.13.0-rc1] - 2023-12-23 diff --git a/starlette_admin/__init__.py b/starlette_admin/__init__.py index 5d31af5c..9bb96793 100644 --- a/starlette_admin/__init__.py +++ b/starlette_admin/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.13.0rc1" +__version__ = "0.13.0rc2" from ._types import ExportType as ExportType from ._types import RequestAction as RequestAction