Hasan Iqbal
commited on
π Release: v0.2.3
Browse filesChanges:
2450e5bf29d02be73b8314a4823ab37c4206e84d Fixed release badge
eac9cdf45d2bc1670f68d1640337fb6ef2588dab Added badge for docs
790a3cd17fbc6d0e6605876ee792264a12ae34cf Added script to bookkeep doc versions
Diff:
https://github.com/hasaniqbal777/openfactcheck/compare/v0.2.2...v0.2.3
- .bumpversion.cfg +1 -1
- VERSION +1 -1
- docs/src/_static/versions.json +8 -3
- pre-requirements.txt +1 -1
- pyproject.toml +1 -1
- src/openfactcheck/__init__.py +1 -1
.bumpversion.cfg
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
[bumpversion]
|
2 |
-
current_version = 0.2.
|
3 |
|
4 |
[bumpversion:file:pyproject.toml]
|
5 |
|
|
|
1 |
[bumpversion]
|
2 |
+
current_version = 0.2.3
|
3 |
|
4 |
[bumpversion:file:pyproject.toml]
|
5 |
|
VERSION
CHANGED
@@ -1 +1 @@
|
|
1 |
-
v0.2.
|
|
|
1 |
+
v0.2.3
|
docs/src/_static/versions.json
CHANGED
@@ -4,9 +4,14 @@
|
|
4 |
"url": "https://openfactcheck.readthedocs.io/en/latest/"
|
5 |
},
|
6 |
{
|
7 |
-
"name": "0.2.
|
8 |
-
"version": "v0.2.
|
9 |
"url": "https://openfactcheck.readthedocs.io/en/stable/",
|
10 |
"preferred": true
|
|
|
|
|
|
|
|
|
|
|
11 |
}
|
12 |
-
]
|
|
|
4 |
"url": "https://openfactcheck.readthedocs.io/en/latest/"
|
5 |
},
|
6 |
{
|
7 |
+
"name": "0.2.3 (stable)",
|
8 |
+
"version": "v0.2.3",
|
9 |
"url": "https://openfactcheck.readthedocs.io/en/stable/",
|
10 |
"preferred": true
|
11 |
+
},
|
12 |
+
{
|
13 |
+
"name": "0.2.2",
|
14 |
+
"version": "v0.2.2",
|
15 |
+
"url": "https://openfactcheck.readthedocs.io/en/0.2.2/"
|
16 |
}
|
17 |
+
]
|
pre-requirements.txt
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
# This file is used to install the library in Hugging Face Spaces before running the pipeline
|
2 |
-
openfactcheck==0.2.
|
|
|
1 |
# This file is used to install the library in Hugging Face Spaces before running the pipeline
|
2 |
+
openfactcheck==0.2.3
|
pyproject.toml
CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4 |
|
5 |
[project]
|
6 |
name = "openfactcheck"
|
7 |
-
version = "0.2.
|
8 |
authors = [
|
9 |
{name = "Hasan Iqbal", email = "hasan.iqbal@mbzuai.ac.ae"},
|
10 |
{name = "Yuxia Wang", email = "yuxia.wang@mbzuai.ac.ae"},
|
|
|
4 |
|
5 |
[project]
|
6 |
name = "openfactcheck"
|
7 |
+
version = "0.2.3"
|
8 |
authors = [
|
9 |
{name = "Hasan Iqbal", email = "hasan.iqbal@mbzuai.ac.ae"},
|
10 |
{name = "Yuxia Wang", email = "yuxia.wang@mbzuai.ac.ae"},
|
src/openfactcheck/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
from . import *
|
2 |
|
3 |
# Version of the openfactcheck package
|
4 |
-
__version__ = '0.2.
|
|
|
1 |
from . import *
|
2 |
|
3 |
# Version of the openfactcheck package
|
4 |
+
__version__ = '0.2.3'
|