Skip to content

Commit

Permalink
[misc] post release v0.11.0 & public docker cron job adjustment (mind…
Browse files Browse the repository at this point in the history
  • Loading branch information
felixdittrich92 authored Jan 30, 2025
1 parent 1c9ce92 commit b84bb84
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% set pyproject = load_file_data('../pyproject.toml', from_recipe_dir=True) %}
{% set project = pyproject.get('project') %}
{% set urls = pyproject.get('project', {}).get('urls') %}
{% set version = environ.get('BUILD_VERSION', '0.11.0a0') %}
{% set version = environ.get('BUILD_VERSION', '0.11.1a0') %}

package:
name: {{ project.get('name') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tf,viz,html] --upgrade
pip install -e .[torch,viz,html] --upgrade
pip install -e .[docs]
- name: Build documentation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/public_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
pull_request:
branches: main
schedule:
- cron: '0 2 29 * *' # At 02:00 on day-of-month 29
- cron: '0 2 1 */3 *' # At 02:00 on the 1st day of every 3rd month

env:
REGISTRY: ghcr.io
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tf,viz,html] --upgrade
pip install -e .[torch,viz,html] --upgrade
pip install -e .[docs]
- name: Build documentation
Expand Down
2 changes: 1 addition & 1 deletion api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "doctr-api"
version = "0.10.1a0"
version = "0.11.1a0"
description = "Backend template for your OCR API with docTR"
authors = ["Mindee <[email protected]>"]
license = "Apache-2.0"
Expand Down
3 changes: 2 additions & 1 deletion docs/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,6 @@ deploy_doc "75bddfc" v0.7.0
deploy_doc "67d1087" v0.8.0
deploy_doc "62d94ff" v0.8.1
deploy_doc "894eafd" v0.9.0
deploy_doc "d5dbc73" # v0.10.0 Latest stable release
deploy_doc "d5dbc73" v0.10.0
deploy_doc "1c9ce92" # v0.11.0 Latest stable release
rm -rf _build _static _conf.py
5 changes: 3 additions & 2 deletions docs/source/_static/js/custom.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

v0.11.0 (2025-01-30)
-------------------
Release note: `v0.11.0 <https://github.com/mindee/doctr/releases/tag/v0.11.0>`_

v0.10.0 (2024-10-21)
--------------------
Release note: `v0.10.0 <https://github.com/mindee/doctr/releases/tag/v0.10.0>`_
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from setuptools import setup

PKG_NAME = "python-doctr"
VERSION = os.getenv("BUILD_VERSION", "0.11.0a0")
VERSION = os.getenv("BUILD_VERSION", "0.11.1a0")


if __name__ == "__main__":
Expand Down

0 comments on commit b84bb84

Please sign in to comment.