Skip to content

Commit e9714b9

Browse files
committed
release: v1.2.44
1 parent 4873371 commit e9714b9

File tree

7 files changed

+1965
-3589
lines changed

7 files changed

+1965
-3589
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@ on:
1414
branches: master
1515
schedule:
1616
# * is a special character in YAML so you have to quote this string
17-
- cron: '0 3 * * 6'
17+
- cron: "0 3 * * 6"
1818
workflow_dispatch:
1919
inputs:
2020
reason:
21-
description: 'Reason'
21+
description: "Reason"
2222
required: false
23-
default: 'Manual trigger'
23+
default: "Manual trigger"
2424

2525
jobs:
2626
Python_Tests:
2727
runs-on: ubuntu-20.04
2828
strategy:
2929
matrix:
30-
python-version: [3.6, 3.7, 3.8, 3.9]
31-
requirements-level: [pypi]
32-
db-service: [postgresql12]
33-
search-service: [elasticsearch7]
34-
include:
30+
python-version: [3.6, 3.7, 3.8, 3.9]
31+
requirements-level: [pypi]
32+
db-service: [postgresql12]
33+
search-service: [elasticsearch7]
34+
include:
3535
- db-service: postgresql12
3636
DB_EXTRAS: "postgresql"
3737

@@ -59,7 +59,7 @@ jobs:
5959

6060
- name: Generate dependencies
6161
run: |
62-
python -m pip install setuptools py twine wheel requirements-builder "black>=20.8b0,<22"
62+
python -m pip install "setuptools<58" py twine wheel requirements-builder "black>=20.8b0,<22"
6363
requirements-builder -e "$EXTRAS" --level=${{ matrix.requirements-level }} setup.py > .${{ matrix.requirements-level }}-${{ matrix.python-version }}-requirements.txt
6464
6565
- name: Cache pip
@@ -117,4 +117,3 @@ jobs:
117117
env:
118118
# avoid fail on warnings
119119
CI: false
120-

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,5 @@ target/
6666

6767
# vscode history
6868
**/.history
69+
70+
.python-version

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
Changes
88
=======
99

10+
Version 1.2.44 (released 2022-10-24)
11+
12+
- change eitems source vocabulary size (INC3273709)
13+
1014
Version 1.2.41 (released 2022-10-07)
1115

1216
- Change location link and display text (RQF2137656)

cds_ils/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
and parsed by ``setup.py``.
1212
"""
1313

14-
__version__ = "1.2.43"
14+
__version__ = "1.2.44"

ui/.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
REACT_APP_UI_ILS_VERSION=1.0.0-alpha.71
1+
REACT_APP_UI_ILS_VERSION=1.0.0-alpha.74
22
REACT_APP_INVENIO_VERSION=1.0.0a69
33
REACT_APP_INVENIO_UI_URL=https://127.0.0.1:5000
44
REACT_APP_INVENIO_REST_ENDPOINTS_BASE_URL=https://127.0.0.1:5000/api
5-
REACT_APP_OVERLAY_VERSION=1.2.43
5+
REACT_APP_OVERLAY_VERSION=1.2.44
66
REACT_APP_ENV_NAME=dev
77
REACT_APP_INVENIO_PIWIK_ID=undefined
88
REACT_APP_INVENIO_MATOMO_ID=undefined

0 commit comments

Comments
 (0)