diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 9477efc..8fa8ca9 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -9,4 +9,4 @@ mkdocs: python: install: - - requirements: requirements.txt \ No newline at end of file + - requirements: requirements.txt diff --git a/README.md b/README.md index 7c4f93a..d2c1ee0 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,4 @@ ingest and share named, standardised datasets. # Getting Started -See the [documentation](https://rapid.readthedocs.io/en/latest/) for more details \ No newline at end of file +See the [documentation](https://rapid.readthedocs.io/en/latest/) for more details diff --git a/docs/changelog.md b/docs/changelog.md index c8dbab5..db34c0b 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,8 +1,6 @@ # Changelog -## v7.0.0 / v0.1.0 (sdk) - _2023-09-12_ - -See [v7.0.0 / v0.1.0 (sdk)] changes. +## v7.0.0 / v0.1.1 (sdk) - _2023-09-12_ ### Features @@ -23,4 +21,4 @@ See [v7.0.0 / v0.1.0 (sdk)] changes. - See the [migration doc](migration.md) for details on how to migrate to v7 from v6. [Unreleased changes]: https://github.com/no10ds/rapid/compare/v7.0.0...HEAD -[v7.0.0 / v0.1.0 (sdk)]: https://github.com/no10ds/rapid/v7.0.0 +[v7.0.0 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.0 diff --git a/get_latest_release_changelog.py b/get_latest_release_changelog.py index 27f1c03..555cc45 100644 --- a/get_latest_release_changelog.py +++ b/get_latest_release_changelog.py @@ -9,7 +9,8 @@ for line in changelog_lines: if re.match( - f"##\\sv\\d+\\.\\d+\\.\\d+\\s-\\s_\\d{{4}}-\\d{{2}}-\\d{{2}}_$", # noqa: F541 + # Match for the release version number e.g. ## v7.0.0 + f"##\s+v\d+\.\d+\.\d+", # noqa: F541 line, ): adding = not adding @@ -22,4 +23,4 @@ ) else: with open("latest_release_changelog.md", "w+") as latest_changelog: - latest_changelog.writelines(parsed_lines[4:]) + latest_changelog.writelines(parsed_lines) diff --git a/sdk/setup.py b/sdk/setup.py index 61ec536..22ec9e3 100644 --- a/sdk/setup.py +++ b/sdk/setup.py @@ -2,7 +2,7 @@ setup( name="rapid-sdk", - version="0.1.0", + version="0.1.1", description="A python sdk for the rAPId API", url="https://github.com/no10ds/rapid-sdk", author="Lewis Card",