diff --git a/CHANGELOG.md b/CHANGELOG.md index 231d942c..206e2333 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Add your updates here :) +## [1.3.2] 2023-12-18 + +- Fix markdown table + ## [1.3.1] 2023-12-18 - Fix GitHub Action diff --git a/README.md b/README.md index b3d68b3d..df6fd0ca 100644 --- a/README.md +++ b/README.md @@ -317,7 +317,7 @@ jobs: # Collect data & generate markdown - name: GitHub Dependents Info - uses: nvuillam/github-dependents-info@v1.3.1 + uses: nvuillam/github-dependents-info@v1.3.2 # See documentation for variables details: https://github.com/nvuillam/github-dependents-info?tab=readme-ov-file#%EF%B8%8F-usage with: repo: ${{ github.repository }} diff --git a/action.yml b/action.yml index 314594aa..290edf44 100644 --- a/action.yml +++ b/action.yml @@ -28,7 +28,7 @@ inputs: runs: using: "docker" - image: "docker://nvuillam/github-dependents-info:v1.3.1" + image: "docker://nvuillam/github-dependents-info:v1.3.2" args: - --repo - ${{ inputs.repo }} diff --git a/github_dependents_info/gh_dependents_info.py b/github_dependents_info/gh_dependents_info.py index 0dfc4d62..f94504d7 100644 --- a/github_dependents_info/gh_dependents_info.py +++ b/github_dependents_info/gh_dependents_info.py @@ -359,6 +359,7 @@ def build_markdown(self, **options) -> str: md_lines += [""] # footer + md_lines += [""] md_lines += [ "_Generated using [github-dependents-info]" "(https://github.com/nvuillam/github-dependents-info), " diff --git a/pyproject.toml b/pyproject.toml index 2fbbdaac..2492c1c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "github-dependents-info" -version = "1.3.1" +version = "1.3.2" description = "Collect information about dependencies between a github repo and other repositories. Results available in JSON, markdown and badges." readme = "README.md" authors = ["nvuillam "]