diff --git a/build.py b/build.py index e5404cf7..679dda75 100755 --- a/build.py +++ b/build.py @@ -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 diff --git a/frontend/package.json b/frontend/package.json index 38b9e262..44c8d021 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "gochan.js", - "version": "3.6.0", + "version": "3.7.0", "description": "", "main": "./ts/main.ts", "private": true, diff --git a/html/error/404.html b/html/error/404.html index 9124a56e..6482bce5 100755 --- a/html/error/404.html +++ b/html/error/404.html @@ -7,6 +7,6 @@

404: File not found

The requested file could not be found on this server.

-
Site powered by Gochan v3.6.0 +
Site powered by Gochan v3.7.0 \ No newline at end of file diff --git a/html/error/500.html b/html/error/500.html index 377f6510..e7bcc1d0 100755 --- a/html/error/500.html +++ b/html/error/500.html @@ -7,6 +7,6 @@

Error 500: Internal Server error

The server encountered an error while trying to serve the page, and we apologize for the inconvenience. The system administrator will try to fix things as soon they get around to it, whenever that is. Hopefully soon.

-
Site powered by Gochan v3.6.0 +
Site powered by Gochan v3.7.0 \ No newline at end of file diff --git a/html/error/502.html b/html/error/502.html index fa2bef3d..6784ef82 100644 --- a/html/error/502.html +++ b/html/error/502.html @@ -7,6 +7,6 @@

Error 502: Bad gateway

The server encountered an error while trying to serve the page, and we apologize for the inconvenience. The system administrator will try to fix things as soon they get around to it, whenever that is. Hopefully soon.

-
Site powered by Gochan v3.6.0 +
Site powered by Gochan v3.7.0 \ No newline at end of file diff --git a/pkg/gcplugin/lua_test.go b/pkg/gcplugin/lua_test.go index 46ee14f9..6bbdee44 100644 --- a/pkg/gcplugin/lua_test.go +++ b/pkg/gcplugin/lua_test.go @@ -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) {