diff --git a/internal/version/version.go b/internal/version/version.go index a3b708e90..0dea23f65 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -15,7 +15,7 @@ func VersionMinor() int { } func VersionRevision() int { - return 0 + return 1 } func Version() string { diff --git a/skills/srs-develop/SKILL.md b/skills/srs-develop/SKILL.md index 6602e1fe0..a581575a8 100644 --- a/skills/srs-develop/SKILL.md +++ b/skills/srs-develop/SKILL.md @@ -77,13 +77,13 @@ Do NOT attempt unsupported tasks. 1. Ask the user for the PR number if they haven't given it. 2. Bump revision by one in **both** version files, keeping them in sync: - `internal/version/version.go` — `VersionRevision()` - - `trunk/src/core/srs_core_version7.hpp` — `VERSION_REVISION` -3. Add a new top entry to `trunk/doc/CHANGELOG.md` under `## SRS 7.0 Changelog`, matching the existing format: + - `trunk/src/core/srs_core_version8.hpp` — `VERSION_REVISION` +3. Add a new top entry to `trunk/doc/CHANGELOG.md` under `## SRS 8.0 Changelog`, matching the existing format: ``` - * v7.0, YYYY-MM-DD, Merge [#PR](URL): : . v7.0. (#PR) + * v8.0, YYYY-MM-DD, Merge [#PR](URL): : . v8.0. (#PR) ``` Propose the summary to the user; don't invent one unilaterally. -4. Stop. Let the user review. When they `git add` the version files and changelog, commit with a short message like `Proxy: Bump to v7.0. for #.`. +4. Stop. Let the user review. When they `git add` the version files and changelog, commit with a short message like `Proxy: Bump to v8.0. for #.`. --- diff --git a/trunk/doc/CHANGELOG.md b/trunk/doc/CHANGELOG.md index 83cfc41df..81edb6763 100644 --- a/trunk/doc/CHANGELOG.md +++ b/trunk/doc/CHANGELOG.md @@ -7,6 +7,7 @@ The changelog for SRS. ## SRS 8.0 Changelog +* v8.0, 2026-05-17, Merge [#4676](https://github.com/ossrs/srs/pull/4676): Proxy: Fix RTC/SRT reader goroutine leak; unwrap legacy WHEP JSON envelope; add WHEP pprof guide. v8.0.1 (#4676) * v8.0, 2026-05-17, Init SRS 8.0, code Free. v8.0.0 diff --git a/trunk/src/core/srs_core_version8.hpp b/trunk/src/core/srs_core_version8.hpp index ba523fcf9..4b2c74f75 100644 --- a/trunk/src/core/srs_core_version8.hpp +++ b/trunk/src/core/srs_core_version8.hpp @@ -9,6 +9,6 @@ #define VERSION_MAJOR 8 #define VERSION_MINOR 0 -#define VERSION_REVISION 0 +#define VERSION_REVISION 1 #endif