Skip to content

Commit

Permalink
release: v5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ntarocco committed Nov 15, 2024
1 parent a942146 commit e97c99c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 22 deletions.
27 changes: 6 additions & 21 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2021 CERN.
# Copyright (C) 2024 CERN.
#
# Invenio-Requests is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -13,23 +13,8 @@ on:
- v*

jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel babel
- name: Build package
run: |
python setup.py compile_catalog sdist bdist_wheel
- name: Publish
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_token }}
Build-N-Publish:
uses: inveniosoftware/workflows/.github/workflows/pypi-publish.yml@master
secrets: inherit
with:
babel-compile-catalog: true
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
Changes
=======

Version 5.3.0 (released 2024-11-15)

- actions: allows passing kwargs to execute_action, so that custom behaviour
can be implemented in each action
- translations: include Jinja templates in translations

Version 5.2.0 (released 2024-10-10)

- webpack: update axios major version
Expand Down
2 changes: 1 addition & 1 deletion invenio_requests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
current_requests_service,
)

__version__ = "5.2.0"
__version__ = "5.3.0"

__all__ = (
"__version__",
Expand Down

0 comments on commit e97c99c

Please sign in to comment.