Skip to content

Commit

Permalink
chore(ver): bump 1.5.5 --> 1.5.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
vinci1it2000 committed Apr 3, 2024
1 parent c45226f commit 23f1120
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 7 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,43 @@ Changelog
=========


v1.5.6 (2024-04-03)
-------------------

Feat
~~~~
- (form): Update resources.

- (form): Add `ExcelPreviewWidget` and `ExcelPreview` components.

- (form): Change behaviour of `edit_on_change`, `pre_submit` and
`post_submit` optional paths.

- (dsp): Add option to avoid cycles when extracting dsp from reverse
graph.

- (form): Add `ResponsiveGridLayout` component.

- (form): Update `ant-design-draggable-modal` for antd v5.

- (form): Secure secrets data of payments.

- (form): Change icons of TableField and App component.

- (form): Improve rendering of tables.


Fix
~~~
- (test): Ensure timing for testcases.

- (form): Correct Cascader properties in omit.

- (form): Correct FileWidgets behaviours.

- (form): Correct CascaderField layout.


v1.5.5 (2024-03-19)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ schedula: A smart function scheduler for dynamic flow-based programming
|pypi_ver| |test_status| |cover_status| |docs_status| |downloads|
|month_downloads| |github_issues| |python_ver| |proj_license| |binder|

:release: 1.5.5
:date: 2024-03-19 12:30:00
:release: 1.5.6
:date: 2024-04-03 15:00:00
:repository: https://github.com/vinci1it2000/schedula
:pypi-repo: https://pypi.org/project/schedula/
:docs: https://schedula.readthedocs.io/
Expand Down
6 changes: 3 additions & 3 deletions bin/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ while true; do
case ${yn} in
[Yy] | "")
while true; do
echo "Do you wish to publish on PyPI ('n' for TestPyPI)?[Y/n]"
echo "Do you wish to publish on TestPyPI ('n' for PyPI)?[Y/n]"
read yn
case ${yn} in
[Yy] | "")
[Nn] | "")
twine upload dist/*
exit
;;

[Nn])
[Yy])
twine upload --repository testpypi dist/*
while true; do
echo "Do you wish to publish on PyPI?[Y/n]"
Expand Down
4 changes: 2 additions & 2 deletions schedula/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
'__license__', '__copyright__']

#: Authoritative project's PEP 440 version.
__version__ = version = "1.5.5" # Also update README.rst
__version__ = version = "1.5.6" # Also update README.rst

# Please UPDATE TIMESTAMP WHEN BUMPING VERSIONS AND BEFORE RELEASE.
#: Release date.
__updated__ = "2024-03-19 12:30:00"
__updated__ = "2024-04-03 15:00:00"

__title__ = 'schedula'

Expand Down

0 comments on commit 23f1120

Please sign in to comment.