Skip to content

Commit

Permalink
Set release strings to 3.7.0 for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Eggbertx committed Jun 24, 2023
1 parent 51f62b8 commit 6c0926b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"README.md",
)

GOCHAN_VERSION = "3.6.0"
GOCHAN_VERSION = "3.7.0"
DATABASE_VERSION = "2" # stored in DBNAME.DBPREFIXdatabase_version

PATH_NOTHING = -1
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gochan.js",
"version": "3.6.0",
"version": "3.7.0",
"description": "",
"main": "./ts/main.ts",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion html/error/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
2 changes: 1 addition & 1 deletion html/error/500.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
2 changes: 1 addition & 1 deletion html/error/502.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
4 changes: 2 additions & 2 deletions pkg/gcplugin/lua_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}

Expand All @@ -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) {
Expand Down

0 comments on commit 6c0926b

Please sign in to comment.