Skip to content

Commit 4c4ff19

Browse files
committed
prepare release v3.0.0-rc.1
1 parent 38fc535 commit 4c4ff19

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
)
3535

3636
// Version of current fiber package
37-
const Version = "3.0.0-beta.5"
37+
const Version = "3.0.0-rc.1"
3838

3939
// Handler defines a function to serve HTTP requests.
4040
type Handler = func(Ctx) error

docs/whats_new.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ sidebar_position: 2
55
toc_max_heading_level: 4
66
---
77

8-
[//]: # (https://github.com/gofiber/fiber/releases/tag/v3.0.0-beta.2)
9-
108
## 🎉 Welcome
119

1210
We are excited to announce the release of Fiber v3! 🚀
@@ -20,7 +18,7 @@ it update your project automatically:
2018

2119
```bash
2220
go install github.com/gofiber/cli/fiber@latest
23-
fiber migrate --to 3.0.0
21+
fiber migrate --to v3.0.0-rc.1
2422
```
2523

2624
See the [migration guide](#-migration-guide) for more details and options.
@@ -1421,12 +1419,12 @@ To streamline upgrades between Fiber versions, the Fiber CLI ships with a
14211419

14221420
```bash
14231421
go install github.com/gofiber/cli/fiber@latest
1424-
fiber migrate --to 3.0.0
1422+
fiber migrate --to v3.0.0-rc.1
14251423
```
14261424

14271425
### Options
14281426

1429-
- `-t, --to string` migrate to a specific version, e.g. `3.0.0`
1427+
- `-t, --to string` migrate to a specific version, e.g. `v3.0.0`
14301428
- `-f, --force` force migration even if already on that version
14311429
- `-s, --skip_go_mod` skip running `go mod tidy`, `go mod download`, and `go mod vendor`
14321430

0 commit comments

Comments
 (0)