File tree Expand file tree Collapse file tree 6 files changed +34
-5
lines changed Expand file tree Collapse file tree 6 files changed +34
-5
lines changed Original file line number Diff line number Diff line change @@ -196,10 +196,25 @@ jobs:
196
196
command : |
197
197
pip install --user twine
198
198
for wheel in wheels/*.whl; do
199
- echo "Uploading $wheel...";
199
+ echo "Uploading $wheel to Test PYPI ...";
200
200
python -m twine upload --skip-existing --verbose --repository testpypi -u ${TESTPYPI_USER} -p ${TESTPYPI_PASSWORD} "${wheel}"
201
201
done
202
202
203
+ publish-to-pypi :
204
+ docker :
205
+ - image : cimg/python:3.10.7
206
+ steps :
207
+ - attach_workspace :
208
+ at : .
209
+ - run :
210
+ name : Upload wheels to PyPI
211
+ command : |
212
+ pip install --user twine
213
+ for wheel in wheels/*.whl; do
214
+ echo "Uploading $wheel to PyPI...";
215
+ python -m twine upload --skip-existing --verbose -u ${PRODPYPI_USER} -p ${PRODPYPI_PASSWORD} "${wheel}"
216
+ done
217
+
203
218
workflows :
204
219
unit-test-build-and-integration-test :
205
220
jobs :
@@ -229,4 +244,12 @@ workflows:
229
244
- integration-test-windows
230
245
filters :
231
246
branches :
232
- only : master
247
+ only : master
248
+ - publish-to-pypi :
249
+ requires :
250
+ - integration-test-linux
251
+ - integration-test-macos
252
+ - integration-test-windows
253
+ filters :
254
+ branches :
255
+ only : production
Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## [ 1.0.0] - 2022-12-20
3
+ - Release Candidate for first public version
4
+
2
5
## [ 0.6.4] - 2022-12-14
3
6
### Fixed
4
7
- Handle variable-length characters
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cvldoc_parser_core"
3
- version = " 0.6.4 "
3
+ version = " 1.0.0 "
4
4
edition = " 2021"
5
5
6
6
[dependencies ]
Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## [ 1.0.0] - 2022-12-20
3
+ - Release Candidate for first public version
4
+
2
5
## [ 0.6.4] - 2022-12-14
3
6
### Fixed
4
7
- Bugfix in core
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cvldoc_parser_py"
3
- version = " 0.6.4 "
3
+ version = " 1.0.0 "
4
4
edition = " 2021"
5
5
6
6
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
5
5
[project ]
6
6
name = " cvldoc_parser"
7
- version = " 0.6.4 "
7
+ version = " 1.0.0 "
8
8
requires-python = " >=3.7"
9
9
classifiers = [
10
10
" Programming Language :: Rust" ,
You can’t perform that action at this time.
0 commit comments