Skip to content

Commit ff834ae

Browse files
committed
Update ISSUE_TEMPLATE
1 parent 08e767b commit ff834ae

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/ISSUE_TEMPLATE.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
You **must** post issues only here. Questions, ideas **must** be posted in discussions.
2+
3+
14
- [ ] GopherLua is a Lua5.1 implementation. You should be familiar with Lua programming language. Have you read [Lua 5.1 reference manual](http://www.lua.org/manual/5.1/) carefully?
25
- [ ] GopherLua is a Lua5.1 implementation. In Lua, to keep it simple, **it is more important to remove functionalities rather than to add functionalities unlike other languages** . If you are going to introduce some new cool functionalities into the GopherLua code base and the functionalities can be implemented by existing APIs, It should be implemented as a library.
36

go.mod

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
module github.com/yuin/gopher-lua
22

3-
go 1.14
3+
go 1.17
4+
5+
require github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
46

57
require (
68
github.com/chzyer/logex v1.1.10 // indirect
7-
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
89
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect
910
golang.org/x/sys v0.0.0-20190204203706-41f3e6584952 // indirect
1011
)

0 commit comments

Comments
 (0)