Skip to content

Commit 3093d65

Browse files
committed
version 12.1.5
Former-commit-id: cda69f08955cb0d594e98bf26197ee573cbba4b2
1 parent e04ea83 commit 3093d65

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+9645
-364
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ env:
1111
install:
1212
- go get ./...
1313
script:
14-
- go test -v -cover ./...
14+
- go test -count=1 -v -cover ./...
1515
after_script:
1616
# examples
1717
- cd ./_examples
1818
- go get ./...
19-
- go test -v -cover ./...
19+
- go test -count=1 -v -cover ./...
2020
- cd ../
2121
# typescript examples
2222
- cd ./typescript/_examples
2323
- go get ./...
24-
- go test -v -cover ./...
24+
- go test -count=1 -v -cover ./...
2525
- cd ../../
2626
# make sure that the _benchmarks code is working
2727
- cd ./_benchmarks
2828
- go get ./...
29-
- go test -v -cover ./...
29+
- go test -count=1 -v -cover ./...

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ Developers are not forced to upgrade if they don't really need it. Upgrade whene
2121

2222
**How to upgrade**: Open your command-line and execute this command: `go get github.com/kataras/iris/v12@latest`.
2323

24+
# Su, 02 February 2020 | v12.1.5
25+
26+
Various improvements and linting.
27+
2428
# Su, 29 December 2019 | v12.1.4
2529

2630
Minor fix on serving [embedded files](https://github.com/kataras/iris/wiki/File-server).

HISTORY_ES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ Los desarrolladores no están obligados a actualizar si realmente no lo necesita
2121

2222
**Cómo actualizar**: Abra su línea de comandos y ejecute este comando: `go get github.com/kataras/iris/v12@latest`.
2323

24-
# Su, 29 December 2019 | v12.1.4
24+
# Su, 02 February 2020 | v12.1.5
2525

26-
Not translated yet, please navigate to the [english version](HISTORY.md#su-29-december-2019--v1214) instead.
26+
Not translated yet, please navigate to the [english version](HISTORY.md#su-02-february-2020--v1215) instead.
2727

2828
# Sábado, 26 de octubre 2019 | v12.0.0
2929

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Happy New Year!
1+
# News
22

3-
![](https://iris-go.com/images/release.png) Iris version **12.1.4** has been [released](HISTORY.md#su-29-december-2019--v1214)!
3+
![](https://iris-go.com/images/release.png) Iris version **12.1.5** has been [released](HISTORY.md#su-02-february-2020--v1215)!
44

55
![](https://iris-go.com/images/cli.png) The official [Iris Command Line Interface](https://github.com/kataras/iris-cli) will soon be near you in 2020!
66

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.1.4:https://github.com/kataras/iris/releases/tag/v12.1.4
1+
12.1.5:https://github.com/kataras/iris/releases/tag/v12.1.5

_examples/apidoc/yaag/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ go 1.13
44

55
require (
66
github.com/betacraft/yaag v1.0.1-0.20191027021412-565f65e36090
7-
github.com/kataras/iris/v12 v12.1.4
7+
github.com/kataras/iris/v12 v12.1.5
88
)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
just a text.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<h1>Hello App2App3 index</h1>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<h1>Hello App2 index</h1>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
background-color: black;
3+
}

0 commit comments

Comments
 (0)