Skip to content

Commit

Permalink
release v7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyDrane committed Sep 13, 2023
1 parent 67f4eee commit 5070ae6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ mkdocs:

python:
install:
- requirements: requirements.txt
- requirements: requirements.txt
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ ingest and share named, standardised datasets.

# Getting Started

See the [documentation](https://rapid.readthedocs.io/en/latest/) for more details
See the [documentation](https://rapid.readthedocs.io/en/latest/) for more details
6 changes: 2 additions & 4 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
5 changes: 3 additions & 2 deletions get_latest_release_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
2 changes: 1 addition & 1 deletion sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 5070ae6

Please sign in to comment.