diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b04cf5a..3727aa3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 diff --git a/README.md b/README.md index 2f64f68..caa2622 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/libcrawler/version.py b/src/libcrawler/version.py index a770be9..1a6d33d 100644 --- a/src/libcrawler/version.py +++ b/src/libcrawler/version.py @@ -1,2 +1,2 @@ -__version_info__ = ('1', '0', '1') +__version_info__ = ('1', '0', '2') __version__ = '.'.join(__version_info__)