Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 8e264db

Browse files
committed
fix: use 'build' type instead of 'chore' in release script
The new commit-msg hook only allows specific commit types (feat, fix, docs, style, refactor, perf, test, build, ci). Changed release script to use 'build' type which is appropriate for version bumps and releases. - Changed commit message from 'chore:' to 'build:' - Changed PR title from 'chore:' to 'build:' [AI-assisted debugging and comment]
1 parent ca76264 commit 8e264db

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

‎Cargo.lock‎

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎crates/core/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "freenet"
3-
version = "0.1.33"
3+
version = "0.1.34"
44
edition = "2021"
55
rust-version = "1.80"
66
publish = true

‎crates/fdev/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdev"
3-
version = "0.3.11"
3+
version = "0.3.12"
44
edition = "2021"
55
rust-version = "1.80"
66
publish = true
@@ -39,7 +39,7 @@ reqwest = { version = "0.12", features = ["json"] }
3939
http = "1.2"
4040

4141
# internal
42-
freenet = { path = "../core", version = "0.1.33" }
42+
freenet = { path = "../core", version = "0.1.34" }
4343
freenet-stdlib = { workspace = true }
4444

4545
[features]

‎scripts/release.sh‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ create_release_pr() {
422422
run_cmd "Creating release branch" git checkout -b "$branch_name"
423423
fi
424424

425-
run_cmd "Committing version bump" git commit -m "chore: bump versions to $VERSION
425+
run_cmd "Committing version bump" git commit -m "build: bump versions to $VERSION
426426
427427
- freenet: → $VERSION
428428
- fdev: → $FDEV_VERSION
@@ -433,7 +433,7 @@ create_release_pr() {
433433

434434
echo -n " Creating auto-merge PR... "
435435
pr_number=$(gh pr create \
436-
--title "chore: release $VERSION" \
436+
--title "build: release $VERSION" \
437437
--body "**Automated release PR**
438438
439439
- freenet: → **$VERSION**

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /