Skip to content

Commit

Permalink
Release 3.0.0.beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
ileitch committed Dec 14, 2024
1 parent 631e40a commit 1845ebc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "periphery",
version = "0.0.0",
version = "3.0.0.beta6",
compatibility_level = 1,
)

Expand Down
2 changes: 1 addition & 1 deletion Sources/Frontend/Version.swift
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let PeripheryVersion = "3.0.0.beta5"
let PeripheryVersion = "3.0.0.beta6"
5 changes: 3 additions & 2 deletions scripts/release
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ mkdir .release

cat scripts/Version.swift.template | sed s/__VERSION__/${version}/ > Sources/Frontend/Version.swift
cat scripts/artifactbundle_info.json.template | sed s/__VERSION__/${version}/ > .release/info.json
cat MODULE.bazel | sed s/0.0.0/${version}/ > MODULE.bazel.new
rm MODULE.bazel
mv MODULE.bazel.new MODULE.bazel

echo -e "\nUpdate CHANGELOG.md"
confirm "Continue?"
Expand All @@ -55,7 +58,6 @@ cp LICENSE.md MODULE.bazel BUILD.bazel .release/
cp -R bazel Sources .release/
rm -r .release/bazel/dev
cp scripts/release_notes.md.template .release/release_notes.md
cat .release/MODULE.bazel | sed s/version = "0.0.0"/version = "${version}"/ > .release/MODULE.bazel

confirm "\nContinue?"

Expand Down Expand Up @@ -87,7 +89,6 @@ codesign "${bazel_zip_filename}"
# Notarize
notarize "${zip_filename}"
notarize "${zip_artifactbundle}"
notarize "${bazel_zip_filename}"

echo -e "\nVerify changes"
confirm "Continue?"
Expand Down

0 comments on commit 1845ebc

Please sign in to comment.