Skip to content

Commit

Permalink
version 12.1.5
Browse files Browse the repository at this point in the history
Former-commit-id: cda69f08955cb0d594e98bf26197ee573cbba4b2
  • Loading branch information
kataras committed Feb 2, 2020
1 parent e04ea83 commit 3093d65
Show file tree
Hide file tree
Showing 76 changed files with 9,645 additions and 364 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ env:
install:
- go get ./...
script:
- go test -v -cover ./...
- go test -count=1 -v -cover ./...
after_script:
# examples
- cd ./_examples
- go get ./...
- go test -v -cover ./...
- go test -count=1 -v -cover ./...
- cd ../
# typescript examples
- cd ./typescript/_examples
- go get ./...
- go test -v -cover ./...
- go test -count=1 -v -cover ./...
- cd ../../
# make sure that the _benchmarks code is working
- cd ./_benchmarks
- go get ./...
- go test -v -cover ./...
- go test -count=1 -v -cover ./...
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Developers are not forced to upgrade if they don't really need it. Upgrade whene

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

# Su, 02 February 2020 | v12.1.5

Various improvements and linting.

# Su, 29 December 2019 | v12.1.4

Minor fix on serving [embedded files](https://github.com/kataras/iris/wiki/File-server).
Expand Down
4 changes: 2 additions & 2 deletions HISTORY_ES.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Los desarrolladores no están obligados a actualizar si realmente no lo necesita

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

# Su, 29 December 2019 | v12.1.4
# Su, 02 February 2020 | v12.1.5

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

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Happy New Year!
# News

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

![](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!

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.1.4:https://github.com/kataras/iris/releases/tag/v12.1.4
12.1.5:https://github.com/kataras/iris/releases/tag/v12.1.5
2 changes: 1 addition & 1 deletion _examples/apidoc/yaag/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ go 1.13

require (
github.com/betacraft/yaag v1.0.1-0.20191027021412-565f65e36090
github.com/kataras/iris/v12 v12.1.4
github.com/kataras/iris/v12 v12.1.5
)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
just a text.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>Hello App2App3 index</h1>
1 change: 1 addition & 0 deletions _examples/file-server/subdomain/assets/app2/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>Hello App2 index</h1>
3 changes: 3 additions & 0 deletions _examples/file-server/subdomain/assets/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
background-color: black;
}
Binary file not shown.
1 change: 1 addition & 0 deletions _examples/file-server/subdomain/assets/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>Hello index</h1>
Loading

0 comments on commit 3093d65

Please sign in to comment.