Skip to content

Commit 8e95e2f

Browse files
authored
[misc] post release 0.9.1 (#1689)
1 parent 894eafd commit 8e95e2f

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

.conda/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% set pyproject = load_file_data('../pyproject.toml', from_recipe_dir=True) %}
22
{% set project = pyproject.get('project') %}
33
{% set urls = pyproject.get('project', {}).get('urls') %}
4-
{% set version = environ.get('BUILD_VERSION', '0.9.0a0') %}
4+
{% set version = environ.get('BUILD_VERSION', '0.9.1a0') %}
55

66
package:
77
name: {{ project.get('name') }}

api/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"
44

55
[tool.poetry]
66
name = "doctr-api"
7-
version = "0.9.0a0"
7+
version = "0.9.1a0"
88
description = "Backend template for your OCR API with docTR"
99
authors = ["Mindee <[email protected]>"]
1010
license = "Apache-2.0"

docs/build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@ deploy_doc "9d03085" v0.5.1
5353
deploy_doc "dcbb21f" v0.6.0
5454
deploy_doc "75bddfc" v0.7.0
5555
deploy_doc "67d1087" v0.8.0
56-
deploy_doc "62d94ff" # v0.8.1 Latest stable release
56+
deploy_doc "62d94ff" v0.8.1
57+
deploy_doc "894eafd" # v0.9.0 Latest stable release
5758
rm -rf _build _static _conf.py

docs/source/_static/js/custom.js

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/source/changelog.rst

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
v0.9.0 (2024-08-08)
5+
-------------------
6+
Release note: `v0.9.0 <https://github.com/mindee/doctr/releases/tag/v0.9.0>`_
7+
48
v0.8.1 (2024-03-04)
59
-------------------
610
Release note: `v0.8.1 <https://github.com/mindee/doctr/releases/tag/v0.8.1>`_

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from setuptools import setup
1010

1111
PKG_NAME = "python-doctr"
12-
VERSION = os.getenv("BUILD_VERSION", "0.9.0a0")
12+
VERSION = os.getenv("BUILD_VERSION", "0.9.1a0")
1313

1414

1515
if __name__ == "__main__":

0 commit comments

Comments
 (0)