Skip to content

Commit 22a1931

Browse files
authored
bugfix/fix release (#463)
* fix release * add version check to CI
1 parent cf445ea commit 22a1931

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.github/workflows/unit_tests.yml

+7
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ jobs:
5050
- name: Run shfmt
5151
run: shfmt -i 2 -d .
5252

53+
check-version:
54+
runs-on: ubuntu-latest
55+
steps:
56+
- uses: actions/checkout@v4
57+
- name: Run check-version
58+
run: make check-version
59+
5360
changelog:
5461
runs-on: ubuntu-latest
5562
steps:

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.7
2+
3+
### Fixes
4+
5+
* **Fix release version**
6+
17
## 1.0.6
28

39
### Fixes

unstructured_ingest/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.6-dev0" # pragma: no cover
1+
__version__ = "1.0.7" # pragma: no cover

0 commit comments

Comments
 (0)