Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:

- name: Build package
run: |
# You can use 'python setup.py sdist bdist_wheel' or 'python -m build'
python -m build sdist
# You would normally do 'python -m build sdist' or 'python setup.py sdist bdist_wheel'
python build.py sdist

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Documentation Crawler and Converter v1.0.0
# Documentation Crawler and Converter v1.0.2

This tool crawls a documentation website and converts the pages into a single Markdown document. It intelligently removes common sections that appear across multiple pages to avoid duplication, including them once at the end of the document.

Expand Down
2 changes: 1 addition & 1 deletion src/libcrawler/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ('1', '0', '1')
__version_info__ = ('1', '0', '2')
__version__ = '.'.join(__version_info__)