diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 680144f5..f455dc9b 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -2,7 +2,7 @@ Examples for the Iris project can be found at . Documentation for the Iris project can be found at -. +. Love iris? Please consider supporting the project: 👉 https://iris-go.com/donate diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index b1ecdfba..93b4e3d4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,7 +24,7 @@ If applicable, add screenshots to help explain your problem. - OS: [e.g. ubuntu, windows] **iris.Version** -- e.g. v12.2.0 or master +- e.g. v12.2.0-alpha or master Please make sure the bug is reproducible over the `master` branch: diff --git a/_examples/apidoc/yaag/go.mod b/_examples/apidoc/yaag/go.mod index 3b46522f..69607b87 100644 --- a/_examples/apidoc/yaag/go.mod +++ b/_examples/apidoc/yaag/go.mod @@ -4,5 +4,5 @@ go 1.15 require ( github.com/betacraft/yaag v1.0.1-0.20200719063524-47d781406108 - github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 + github.com/kataras/iris/v12 v12.2.0-alpha ) diff --git a/_examples/database/mongodb/go.mod b/_examples/database/mongodb/go.mod index 7460fd1f..b3d9e83c 100644 --- a/_examples/database/mongodb/go.mod +++ b/_examples/database/mongodb/go.mod @@ -4,6 +4,6 @@ go 1.15 require ( github.com/joho/godotenv v1.3.0 - github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 + github.com/kataras/iris/v12 v12.2.0-alpha go.mongodb.org/mongo-driver v1.3.4 ) diff --git a/_examples/database/mysql/go.mod b/_examples/database/mysql/go.mod index e7099fd4..899536e1 100644 --- a/_examples/database/mysql/go.mod +++ b/_examples/database/mysql/go.mod @@ -4,6 +4,6 @@ go 1.15 require ( github.com/go-sql-driver/mysql v1.5.0 - github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 + github.com/kataras/iris/v12 v12.2.0-alpha github.com/mailgun/groupcache/v2 v2.1.0 ) diff --git a/_examples/kafka-api/go.mod b/_examples/kafka-api/go.mod index 6b8f1cfe..cd12d110 100644 --- a/_examples/kafka-api/go.mod +++ b/_examples/kafka-api/go.mod @@ -4,5 +4,5 @@ go 1.15 require ( github.com/Shopify/sarama v1.26.4 - github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 + github.com/kataras/iris/v12 v12.2.0-alpha ) diff --git a/_examples/logging/rollbar/go.mod b/_examples/logging/rollbar/go.mod index eef05e24..b28a35e1 100644 --- a/_examples/logging/rollbar/go.mod +++ b/_examples/logging/rollbar/go.mod @@ -3,6 +3,6 @@ module github.com/kataras/iris/examples/logging/rollbar go 1.15 require ( - github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 + github.com/kataras/iris/v12 v12.2.0-alpha github.com/rollbar/rollbar-go v1.2.0 ) diff --git a/_examples/mvc/overview/go.mod b/_examples/mvc/overview/go.mod index 87f85e46..a2f33581 100644 --- a/_examples/mvc/overview/go.mod +++ b/_examples/mvc/overview/go.mod @@ -2,4 +2,4 @@ module app go 1.15 -require github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 +require github.com/kataras/iris/v12 v12.2.0-alpha diff --git a/_examples/mvc/vuejs-todo-mvc/src/go.mod b/_examples/mvc/vuejs-todo-mvc/src/go.mod index ae23fc21..5f0a86b9 100644 --- a/_examples/mvc/vuejs-todo-mvc/src/go.mod +++ b/_examples/mvc/vuejs-todo-mvc/src/go.mod @@ -2,4 +2,4 @@ module github.com/kataras/iris/_examples/mvc/vuejs-todo-mvc/src go 1.15 -require github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 +require github.com/kataras/iris/v12 v12.2.0-alpha diff --git a/_examples/routing/subdomains/redirect/multi-instances/go.mod b/_examples/routing/subdomains/redirect/multi-instances/go.mod index 59b3bd35..74a941c0 100644 --- a/_examples/routing/subdomains/redirect/multi-instances/go.mod +++ b/_examples/routing/subdomains/redirect/multi-instances/go.mod @@ -2,6 +2,6 @@ module github.com/kataras/iris/_examples/routing/subdomains/redirect/multi-insta go 1.15 -require github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 +require github.com/kataras/iris/v12 v12.2.0-alpha replace github.com/kataras/iris/v12 => ../../../../../ \ No newline at end of file diff --git a/_examples/sessions/database/redis/go.mod b/_examples/sessions/database/redis/go.mod index d583ef54..2e3f9650 100644 --- a/_examples/sessions/database/redis/go.mod +++ b/_examples/sessions/database/redis/go.mod @@ -2,5 +2,5 @@ module app go 1.15 -require github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 +require github.com/kataras/iris/v12 v12.2.0-alpha diff --git a/_examples/websocket/basic/go.mod b/_examples/websocket/basic/go.mod index dfa0c3cc..9f0a6eef 100644 --- a/_examples/websocket/basic/go.mod +++ b/_examples/websocket/basic/go.mod @@ -4,5 +4,5 @@ go 1.15 require ( github.com/iris-contrib/middleware/jwt v0.0.0-20200710202437-92b01b85baaf - github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 // indirect + github.com/kataras/iris/v12 v12.2.0-alpha // indirect ) diff --git a/_examples/websocket/socketio/go.mod b/_examples/websocket/socketio/go.mod index 49a7b844..92024da9 100644 --- a/_examples/websocket/socketio/go.mod +++ b/_examples/websocket/socketio/go.mod @@ -4,5 +4,5 @@ go 1.15 require ( github.com/googollee/go-socket.io v1.4.3-0.20191109153049-7451e2f8c2e0 - github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 + github.com/kataras/iris/v12 v12.2.0-alpha ) diff --git a/iris.go b/iris.go index 2927583f..5c8a0419 100644 --- a/iris.go +++ b/iris.go @@ -36,8 +36,8 @@ import ( "github.com/tdewolff/minify/v2/xml" ) -// Version is the current version number of the Iris Web Framework. -const Version = "12.2.0" +// Version is the current version of the Iris Web Framework. +const Version = "12.2.0-alpha" // Byte unit helpers. const (