Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Mar 27, 2023
1 parent c91b11b commit bb658a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/generate_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_github_token() -> str:
except Exception:
pass

print("ERROR: expected a github token in the environment variable GH_ACCESS_TOKEN or in ~/.githubtoken")
print("ERROR: expected a GitHub token in the environment variable GH_ACCESS_TOKEN or in ~/.githubtoken")
sys.exit(1)


Expand Down Expand Up @@ -75,7 +75,7 @@ def print_section(title: str, items: List[str]) -> None:

repo = Repo(".")
commits = list(repo.iter_commits(COMMIT_RANGE))
commits.reverse()
commits.reverse() # Most recent last

# Sections:
analytics = []
Expand Down Expand Up @@ -153,16 +153,16 @@ def print_section(title: str, items: List[str]) -> None:
# Most interesting first:
print_section("🐍 Python SDK", python)
print_section("🦀 Rust SDK", rust)
print_section("📈 Analytics", analytics)
print_section("🪳 Bug Fixes", bugs)
print_section("🚀 Performance Improvements", performance)
print_section("🧑‍🏫 Examples", examples)
print_section("📚 Docs", docs)
print_section("🖼 UI Improvements", ui)
print_section("🤷‍♂️ Other Viewer Improvements", viewer)
print_section("🕸️ web", web)
print_section("🕸️ Web", web)
print_section("🎨 Renderer Improvements", renderer)
print_section("✨ Other Enhancement", enhancement)
print_section("📈 Analytics", analytics)
print_section("🗣 Merged RFCs", rfc)
print_section("🧑‍💻 Dev-experience", dev_experience)
print_section("🤷‍♂️ Other", misc)

0 comments on commit bb658a0

Please sign in to comment.