Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a172453

Browse files
committed
bump v5.0.0
1 parent f52572b commit a172453

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pongo2 is a Django-syntax like templating-language ([official website](https://w
99
Install/update using `go get` (no dependencies required by pongo2):
1010

1111
```sh
12-
go get -u github.com/flosch/pongo2/v4
12+
go get -u github.com/flosch/pongo2/v5
1313
```
1414

1515
Please use the [issue tracker](https://github.com/flosch/pongo2/issues) if you're encountering any problems with pongo2 or if you need help with implementing tags or filters ([create a ticket!](https://github.com/flosch/pongo2/issues/new)).
@@ -109,7 +109,6 @@ Please use the [issue tracker](https://github.com/flosch/pongo2/issues) if you'r
109109
- [Pongo2echo](https://github.com/stnc/pongo2echo) - pongo2 echo framework stability renderer [stnc]
110110
- [Pongo2gin](https://github.com/stnc/pongo2gin) - pongo2 gin minimal framework stability renderer (support for [v4](https://github.com/stnc/pongo4gin)) [stnc]
111111

112-
113112
Please add your project to this list and send me a pull request when you've developed something nice for pongo2.
114113

115114
## Who's using pongo2
@@ -143,7 +142,7 @@ fmt.Println(out) // Output: Hello Florian!
143142
package main
144143

145144
import (
146-
"github.com/flosch/pongo2/v4"
145+
"github.com/flosch/pongo2/v5"
147146
"net/http"
148147
)
149148

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/flosch/pongo2/v4
1+
module github.com/flosch/pongo2/v5
22

33
go 1.16
44

pongo2_issues_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package pongo2_test
33
import (
44
"testing"
55

6-
"github.com/flosch/pongo2/v4"
6+
"github.com/flosch/pongo2/v5"
77
)
88

99
func TestIssue151(t *testing.T) {

pongo2_template_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515
"time"
1616

17-
"github.com/flosch/pongo2/v4"
17+
"github.com/flosch/pongo2/v5"
1818
)
1919

2020
type stringerValueType int

pongo2_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package pongo2_test
33
import (
44
"testing"
55

6-
"github.com/flosch/pongo2/v4"
6+
"github.com/flosch/pongo2/v5"
77
. "gopkg.in/check.v1"
88
)
99

0 commit comments

Comments
 (0)