-
-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,3 +118,4 @@ ENV/ | |
.vscode/ | ||
docs/examples/segment.cpg | ||
docs/examples/segment.prj | ||
docs/changelog_update.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import re | ||
|
||
# Copy the release notes from the GitHub release page | ||
markdown_text = """ | ||
## What's Changed | ||
* Add JOSS paper by @giswqs in https://github.com/opengeos/segment-geospatial/pull/197 | ||
* Add notebook for using Maxar Open Data by @giswqs in https://github.com/opengeos/segment-geospatial/pull/198 | ||
* Add checkpoint to textsam.LangSAM() by @forestbat in https://github.com/opengeos/segment-geospatial/pull/204 | ||
* Add workshop notebook by @giswqs in https://github.com/opengeos/segment-geospatial/pull/209 | ||
## New Contributors | ||
* @forestbat made their first contribution in https://github.com/opengeos/segment-geospatial/pull/204 | ||
**Full Changelog**: https://github.com/opengeos/segment-geospatial/compare/v0.10.1...v0.10.2 | ||
""" | ||
|
||
# Regular expression pattern to match the Markdown hyperlinks | ||
pattern = r"https://github\.com/opengeos/segment-geospatial/pull/(\d+)" | ||
|
||
|
||
# Function to replace matched URLs with the desired format | ||
def replace_url(match): | ||
pr_number = match.group(1) | ||
return f"[#{pr_number}](https://github.com/opengeos/segment-geospatial/pull/{pr_number})" | ||
|
||
|
||
# Use re.sub to replace URLs with the desired format | ||
formatted_text = re.sub(pattern, replace_url, markdown_text) | ||
|
||
for line in formatted_text.splitlines(): | ||
if "Full Changelog" in line: | ||
prefix = line.split(": ")[0] | ||
link = line.split(": ")[1] | ||
version = line.split("/")[-1] | ||
formatted_text = ( | ||
formatted_text.replace(line, f"{prefix}: [{version}]({link})") | ||
.replace("## What's Changed", "**What's Changed**") | ||
.replace("## New Contributors", "**New Contributors**") | ||
) | ||
|
||
|
||
with open("docs/changelog_update.md", "w") as f: | ||
f.write(formatted_text) | ||
|
||
# Print the formatted text | ||
print(formatted_text) | ||
|
||
# Copy the formatted text and paste it to the CHANGELOG.md file |