-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/chriscerie/selene into exha…
…ustive-deps
- Loading branch information
Showing
7 changed files
with
519 additions
and
441 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[workspace] | ||
members = ["selene", "selene-lib"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.25.0" | ||
authors = ["Kampfkarren <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://kampfkarren.github.io/selene/" | ||
license = "MPL-2.0" | ||
repository = "https://github.com/Kampfkarren/selene" | ||
|
||
[workspace.dependencies] | ||
full_moon = "0.19.0" | ||
toml = "0.7.2" | ||
|
||
# Do not update this without confirming profiling uses the same version of tracy-client as selene | ||
profiling = "1.0.7" | ||
[workspace] | ||
members = ["selene", "selene-lib"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.26.1" | ||
authors = ["Kampfkarren <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://kampfkarren.github.io/selene/" | ||
license = "MPL-2.0" | ||
repository = "https://github.com/Kampfkarren/selene" | ||
|
||
[workspace.dependencies] | ||
full_moon = "0.19.0" | ||
toml = "0.7.2" | ||
|
||
# Do not update this without confirming profiling uses the same version of tracy-client as selene | ||
profiling = "1.0.7" |
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,70 @@ | ||
#!/usr/bin/python3 | ||
from datetime import datetime | ||
import os | ||
import re | ||
import sys | ||
|
||
if len(sys.argv) != 2: | ||
print("Usage: prepare-release.py <version>") | ||
sys.exit(1) | ||
|
||
version = sys.argv[1] | ||
|
||
print("Updating CHANGELOG...") | ||
|
||
with open("CHANGELOG.md", "r") as changelog_file: | ||
changelog = changelog_file.read() | ||
|
||
changelog = re.sub( | ||
r"## \[Unreleased\]\((.+)\)$", | ||
f"## [Unreleased](https://github.com/Kampfkarren/selene/compare/{version}...HEAD)\n\n" | ||
f"## [{version}](https://github.com/Kampfkarren/selene/releases/tag/{version}) - {datetime.today().strftime('%Y-%m-%d')}", | ||
changelog, | ||
0, | ||
re.MULTILINE | ||
) | ||
|
||
with open("CHANGELOG.md", "w") as changelog_file: | ||
changelog_file.write(changelog) | ||
|
||
print("Updating root Cargo.toml...") | ||
|
||
with open("Cargo.toml", "r") as cargo_file: | ||
cargo = cargo_file.read() | ||
|
||
cargo = re.sub( | ||
r"version = \"(.+)\"", | ||
f"version = \"{version}\"", | ||
cargo, | ||
0, | ||
re.MULTILINE | ||
) | ||
|
||
with open("Cargo.toml", "w") as cargo_file: | ||
cargo_file.write(cargo) | ||
|
||
print("Updating selene/Cargo.toml...") | ||
|
||
with open("selene/Cargo.toml", "r") as cargo_file: | ||
selene_cargo = cargo_file.read() | ||
|
||
selene_cargo = re.sub( | ||
r"^(selene-lib = .+version = \")(=.+?)\"", | ||
f"\\1={version}\"", | ||
selene_cargo, | ||
0, | ||
re.MULTILINE | ||
) | ||
|
||
with open("selene/Cargo.toml", "w") as cargo_file: | ||
cargo_file.write(selene_cargo) | ||
|
||
print("Running cargo check...") | ||
|
||
os.system("cargo check") | ||
|
||
print("------") | ||
|
||
print("Done. Next steps:") | ||
print("- Make and push a commit with [release]") | ||
print("- cargo publish") |
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 |
---|---|---|
|
@@ -13,3 +13,4 @@ UDim2.new(1, 1, 1, 1) | |
UDim2.new(a, b, c, d) | ||
UDim2.fromOffset(1, 1) | ||
UDim2.fromScale(1, 1) | ||
UDim2.new() |
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