Skip to content

Commit c50542b

Browse files
committed
release: v1.1.1
Co-Authored-by: Pascal Repond <pascal.repond@rero.ch>
1 parent bea7f3e commit c50542b

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
run:
2525
name: "Build and publish release"
2626
runs-on: ubuntu-latest
27+
environment: pypi
28+
permissions:
29+
id-token: write
2730

2831
steps:
2932
- uses: actions/checkout@v4
@@ -37,8 +40,8 @@ jobs:
3740
- name: Set up Python
3841
run: uv python install 3.12
3942

40-
- name: Build
43+
- name: Build wheel
4144
run: uv build
4245

43-
- name: Publish
44-
run: uv publish -t ${{ secrets.PYPI_TOKEN }}
46+
- name: Publish package
47+
run: uv publish

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
# Changelog
22

3+
## [v1.1.1](https://github.com/rero/rero-invenio-files/tree/v1.1.1) (2025-07-31)
4+
5+
[Full Changelog](https://github.com/rero/rero-invenio-files/compare/v1.1.0...v1.1.1)
6+
7+
**Changes:**
8+
9+
- feat(dev): add uv and ruff [#9](https://github.com/rero/rero-invenio-files/pull/9) (by @PascalRepond)
10+
- chore(docs): fix readme badges [#7](https://github.com/rero/rero-invenio-files/pull/7) (by @PascalRepond)
11+
312
## [v1.1.0](https://github.com/rero/rero-invenio-files/tree/v1.1.0) (2025-05-13)
413

514
[Full Changelog](https://github.com/rero/rero-invenio-files/compare/v1.0.0...v1.1.0)
615

716
**Enhancements:**
8-
* invenio: new version [\#5](https://github.com/rero/rero-invenio-files/pull/5) (by @rerowep)
9-
* actions: pipy publish package use poetry [\#2](https://github.com/rero/rero-invenio-files/pull/2) (by @jma)
17+
18+
- invenio: new version [\#5](https://github.com/rero/rero-invenio-files/pull/5) (by @rerowep)
19+
- actions: pipy publish package use poetry [\#2](https://github.com/rero/rero-invenio-files/pull/2) (by @jma)
1020

1121
## [v1.0.0](https://github.com/rero/rero-invenio-files/tree/v1.0.0) (2024-05-21)
1222

13-
* Initial commit
23+
- Initial commit

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. -->
1515

1616
<!-- PROJECT SHIELDS -->
1717
[![Github actions
18-
status](https://github.com/rero/rero-invenio-files/workflows/build/badge.svg)](https://github.com/rero/rero-invenio-files/actions?query=workflow%3Abuild)
18+
status](https://github.com/rero/rero-invenio-files/actions/workflows/continuous-integration-test.yml/badge.svg)](https://github.com/rero/rero-invenio-files/actions/workflows/continuous-integration-test.yml)
1919
[![Release
2020
Number](https://img.shields.io/github/tag/rero/rero-invenio-files.svg)](https://github.com/rero/rero-invenio-files/releases/latest)
2121
[![Downloads](https://img.shields.io/pypi/dm/rero-invenio-files.svg)](https://pypi.python.org/pypi/rero-invenio-files)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "rero-invenio-files"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Files support for the RERO invenio instances."
55
authors = [{name = "RERO",email = "software@rero.ch"}]
66
license = "AGPL-3.0"

rero_invenio_files/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
from rero_invenio_files.ext import REROInvenioFiles
1919

20-
__version__ = "1.1.0"
20+
__version__ = "1.1.1"
2121

2222
__all__ = ("REROInvenioFiles", "__version__")

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)