version 12.2.0-beta1

This commit is contained in:
Gerasimos (Makis) Maropoulos 2022-04-13 02:39:09 +03:00
parent ecb1c617df
commit 373adbd8c0
No known key found for this signature in database
GPG Key ID: 66FCC29BD385FCA6
3 changed files with 6 additions and 20 deletions

View File

@ -281,7 +281,7 @@ Venkatt Guhesan" title="vguhesan" with="75" style="width:75px;max-width:75px;hei
$ mkdir myapp $ mkdir myapp
$ cd myapp $ cd myapp
$ go mod init myapp $ go mod init myapp
$ go get github.com/kataras/iris/v12@master # or @v12.2.0-alpha8 $ go get github.com/kataras/iris/v12@master # or @v12.2.0-beta1
``` ```
<details><summary>Install on existing project</summary> <details><summary>Install on existing project</summary>
@ -291,25 +291,11 @@ $ cd myapp
$ go get github.com/kataras/iris/v12@master $ go get github.com/kataras/iris/v12@master
``` ```
</details>
<details><summary>Install with a go.mod file</summary>
```txt
module myapp
go 1.16
require github.com/kataras/iris/v12 master
```
**Run** **Run**
```sh ```sh
$ go mod download $ go mod tidy -compat=1.18
$ go run main.go $ go run .
# OR just:
# go run -mod=mod main.go
``` ```
</details> </details>

4
doc.go
View File

@ -38,11 +38,11 @@ Source code and other details for the project are available at GitHub:
Current Version Current Version
12.2.0-alpha9 12.2.0-beta1
Installation Installation
The only requirement is the Go Programming Language, at least version 1.17. The only requirement is the Go Programming Language, at least version 1.18.
$ go get github.com/kataras/iris/v12@master $ go get github.com/kataras/iris/v12@master

View File

@ -39,7 +39,7 @@ import (
) )
// Version is the current version of the Iris Web Framework. // Version is the current version of the Iris Web Framework.
const Version = "12.2.0-alpha9" const Version = "12.2.0-beta1"
// Byte unit helpers. // Byte unit helpers.
const ( const (