This repository was archived by the owner on Mar 13, 2026. It is now read-only.
docs: add markdown version of changelog#372
Merged
tswast merged 3 commits intogoogleapis:masterfrom Aug 19, 2021
Merged
Conversation
TODO: make changelog page a symlink and render markdown in sphinx
be06855 to
6f8d2a5
Compare
Contributor
Author
|
Docs build locally: |
jimfulton
reviewed
Aug 18, 2021
jimfulton
left a comment
There was a problem hiding this comment.
I can't speak to the automation that this is supposed to interoperate with, but otherwise, this looks reasonable to me.
Comment on lines
+1
to
+9
| import re | ||
|
|
||
|
|
||
| with open("docs/source/changelog.rst") as f: | ||
| text = f.read() | ||
|
|
||
| # :issue:`312` -> https://github.com/googleapis/python-bigquery-pandas/issues/312 | ||
| c = re.compile(r":issue:`([0-9]+)`", flags=re.MULTILINE) | ||
| print(re.sub(c, r"[#\1](https://github.com/googleapis/python-bigquery-pandas/issues/\1)", text)) |
There was a problem hiding this comment.
Why is this checked in? Isn't it a one-time script?
Contributor
Author
There was a problem hiding this comment.
Oops, good catch. Yeah, just a one-time script. Not even the final version I used (which is in the PR description)
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changelog converted with
and
Towards #353 and #367