1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-09-06 11:46:24 -07:00

Set release strings to 3.7.0 for new release

This commit is contained in:
Eggbertx 2023-06-24 12:47:14 -07:00
parent 51f62b8fc1
commit 6c0926b4ec
6 changed files with 7 additions and 7 deletions

View file

@ -38,7 +38,7 @@ release_files = (
"README.md",
)
GOCHAN_VERSION = "3.6.0"
GOCHAN_VERSION = "3.7.0"
DATABASE_VERSION = "2" # stored in DBNAME.DBPREFIXdatabase_version
PATH_NOTHING = -1

View file

@ -1,6 +1,6 @@
{
"name": "gochan.js",
"version": "3.6.0",
"version": "3.7.0",
"description": "",
"main": "./ts/main.ts",
"private": true,

View file

@ -7,6 +7,6 @@
<h1>404: File not found</h1>
<img src="/error/lol 404.gif" border="0" alt="">
<p>The requested file could not be found on this server.</p>
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.6.0
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.7.0
</body>
</html>

View file

@ -7,6 +7,6 @@
<h1>Error 500: Internal Server error</h1>
<img src="/error/server500.gif" border="0" alt="">
<p>The server encountered an error while trying to serve the page, and we apologize for the inconvenience. The <a href="https://en.wikipedia.org/wiki/Idiot">system administrator</a> will try to fix things as soon they get around to it, whenever that is. Hopefully soon.</p>
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.6.0
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.7.0
</body>
</html>

View file

@ -7,6 +7,6 @@
<h1>Error 502: Bad gateway</h1>
<img src="/error/server500.gif" border="0" alt="">
<p>The server encountered an error while trying to serve the page, and we apologize for the inconvenience. The <a href="https://en.wikipedia.org/wiki/Idiot">system administrator</a> will try to fix things as soon they get around to it, whenever that is. Hopefully soon.</p>
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.6.0
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.7.0
</body>
</html>

View file

@ -30,7 +30,7 @@ event_trigger("newPost", "blah", 16, 3.14, true, nil)`
)
func initPluginTests() {
config.SetVersion("3.4.1")
config.SetVersion("3.7.0")
initLua()
}
@ -39,7 +39,7 @@ func TestVersionFunction(t *testing.T) {
err := lState.DoString(versionStr)
assert.Nil(t, err)
testingVersionStr := lState.Get(-1).(lua.LString)
assert.EqualValues(t, "3.4.1", testingVersionStr)
assert.EqualValues(t, "3.7.0", testingVersionStr)
}
func TestStructPassing(t *testing.T) {