Skip to content

Commit

Permalink
v.3.64.0 (#3336)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Prescod authored Aug 19, 2022
1 parent f0640d9 commit 4a25f34
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
14 changes: 14 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
History
=======

3.64.0 (2022-08-18)
-------------------

Changes 🎉
~~~~~~~~~~

* Support for upcoming Salesforce 240 Release in Robot by @boakley (#3321)

Issues Fixed 🩴
~~~~~~~~~~~~~~~~

* Fix crash with unusual Unicode characters in metadata on Windows running ``update_package_xml`` by @prescod (#3323)
* Fix Scratch org creation in latest sfdx by @prescod (#3334)

3.63.0 (2022-08-04)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion cumulusci/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.63.0
3.64.0
24 changes: 24 additions & 0 deletions utility/generate-release-notes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import os

import click


@click.command()
@click.option("--prev", required=True, help="Previous version tag")
@click.option("--next", required=True, help="Next version tag")
def main(prev, next):
os.system("git fetch")
cmd = (
'gh api --method POST -H "Accept: application/vnd.github.v3+json" '
+ "/repos/SFDO-Tooling/CumulusCI/releases/generate-notes"
+ f" -f tag_name='{next}' "
+ "-f target_commitish='main' "
+ f"-f previous_tag_name='{prev}' --jq .body "
+ "| pandoc -f gfm -t rst"
)
print(cmd)
os.system(cmd)


if __name__ == "__main__":
main()

0 comments on commit 4a25f34

Please sign in to comment.