Skip to content

Commit

Permalink
Release candidate 2 for 0.13.0 (#471)
Browse files Browse the repository at this point in the history
* Add changelog

* Update coverage workflow
  • Loading branch information
jowilf authored Jan 14, 2024
1 parent 932d69a commit d30fb64
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
9 changes: 8 additions & 1 deletion docs/changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion starlette_admin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.13.0rc1"
__version__ = "0.13.0rc2"

from ._types import ExportType as ExportType
from ._types import RequestAction as RequestAction
Expand Down

0 comments on commit d30fb64

Please sign in to comment.