Skip to content

Commit

Permalink
Merge branch 'release/v0.1.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhigman committed Apr 3, 2024
2 parents 81e5cbc + 65c0402 commit bdb5a35
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_build_and_push_to_dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [[0.1.11]](https://github.com/thoth-pub/thoth-dissemination/releases/tag/v0.1.11) - 2024-04-03
### Fixed
- Fixed bug in logic for finding targets for automatic dissemination
### Changed
- Upgraded GitHub Actions dependency from Node 16 to 20 (`docker/metadata-action@v5`)

## [[0.1.10]](https://github.com/thoth-pub/thoth-dissemination/releases/tag/v0.1.10) - 2024-03-27
### Changed
- Enhanced basic SWORD v2 (DSpace v7) functionality to fit CUL requirements
Expand Down
2 changes: 1 addition & 1 deletion disseminator.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
and upload them in the appropriate format to various platforms.
"""

__version__ = '0.1.10'
__version__ = '0.1.11'

import argparse
import logging
Expand Down
3 changes: 2 additions & 1 deletion obtain_new_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ def remove_exceptions(self):
if environ.get('ENV_EXCEPTIONS') is not None:
try:
exceptions = json.loads(environ.get('ENV_EXCEPTIONS'))
self.thoth_ids = set(self.thoth_ids).difference(exceptions)
self.thoth_ids = list(
set(self.thoth_ids).difference(exceptions))
except:
# No need to early-exit; current use case for exceptions list is
# just to avoid attempting uploads which are expected to fail
Expand Down

0 comments on commit bdb5a35

Please sign in to comment.