Skip to content

Commit

Permalink
release: v1.2.44
Browse files Browse the repository at this point in the history
  • Loading branch information
zzacharo committed Oct 25, 2022
1 parent 4873371 commit e9714b9
Show file tree
Hide file tree
Showing 7 changed files with 1,965 additions and 3,589 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@ on:
branches: master
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 3 * * 6'
- cron: "0 3 * * 6"
workflow_dispatch:
inputs:
reason:
description: 'Reason'
description: "Reason"
required: false
default: 'Manual trigger'
default: "Manual trigger"

jobs:
Python_Tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
requirements-level: [pypi]
db-service: [postgresql12]
search-service: [elasticsearch7]
include:
python-version: [3.6, 3.7, 3.8, 3.9]
requirements-level: [pypi]
db-service: [postgresql12]
search-service: [elasticsearch7]
include:
- db-service: postgresql12
DB_EXTRAS: "postgresql"

Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:

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

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,5 @@ target/

# vscode history
**/.history

.python-version
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
Changes
=======

Version 1.2.44 (released 2022-10-24)

- change eitems source vocabulary size (INC3273709)

Version 1.2.41 (released 2022-10-07)

- Change location link and display text (RQF2137656)
Expand Down
2 changes: 1 addition & 1 deletion cds_ils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
and parsed by ``setup.py``.
"""

__version__ = "1.2.43"
__version__ = "1.2.44"
4 changes: 2 additions & 2 deletions ui/.env
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
REACT_APP_UI_ILS_VERSION=1.0.0-alpha.71
REACT_APP_UI_ILS_VERSION=1.0.0-alpha.74
REACT_APP_INVENIO_VERSION=1.0.0a69
REACT_APP_INVENIO_UI_URL=https://127.0.0.1:5000
REACT_APP_INVENIO_REST_ENDPOINTS_BASE_URL=https://127.0.0.1:5000/api
REACT_APP_OVERLAY_VERSION=1.2.43
REACT_APP_OVERLAY_VERSION=1.2.44
REACT_APP_ENV_NAME=dev
REACT_APP_INVENIO_PIWIK_ID=undefined
REACT_APP_INVENIO_MATOMO_ID=undefined
Loading

0 comments on commit e9714b9

Please sign in to comment.