Skip to content

Commit

Permalink
📦 v2.57.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed Oct 18, 2023
1 parent 9a3bc0e commit 00cb968
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ jobs:
- run:
name: Login to Docker Hub
command: echo "$DOCKERHUB_PASS" | docker login --username "$DOCKERHUB_USERNAME" --password-stdin
- run: docker tag ocrd/core ocrd/core:$(git describe --tags)
- run: docker tag ocrd/core-cuda ocrd/core-cuda:$(git describe --tags)
- run: docker push ocrd/core:$(git describe --tags)
- run: docker push ocrd/core-cuda:$(git describe --tags)
- run: docker tag ocrd/core ocrd/core:$(git describe --tags --abbrev=0)
- run: docker tag ocrd/core-cuda ocrd/core-cuda:$(git describe --tags --abbrev=0)
- run: docker push ocrd/core:$(git describe --tags --abbrev=0)
- run: docker push ocrd/core-cuda:$(git describe --tags --abbrev=0)

workflows:
version: 2
Expand All @@ -101,7 +101,7 @@ workflows:
branches:
only: master
tags:
only: /^v\d.\d\d.\d$/
only: /^v\d\.\d\d\.\d$/
test-pull-request:
jobs:
- test-python37
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Versioned according to [Semantic Versioning](http://semver.org/).

## Unreleased

## [2.57.1] - 2023-10-18

Fixed:

* Docker deployment process, no functional change

## [2.57.0] - 2023-10-18

Fixed:
Expand Down Expand Up @@ -1862,6 +1868,7 @@ Fixed
Initial Release

<!-- link-labels -->
[2.57.1]: ../../compare/v2.57.1..v2.57.0
[2.57.0]: ../../compare/v2.57.0..v2.56.0
[2.56.0]: ../../compare/v2.56.0..v2.55.2
[2.55.2]: ../../compare/v2.55.2..v2.55.1
Expand Down
2 changes: 1 addition & 1 deletion ocrd_utils/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='ocrd_utils',
version='2.57.0',
version='2.57.1',
description='OCR-D framework - shared code, helpers, constants',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 00cb968

Please sign in to comment.