M CHANGELOG.md => CHANGELOG.md +3 -0
@@ 8,6 8,8 @@ and this project adheres to
## [Unreleased]
+## [1.4.0] - 2021-08-15
+
### Changed
+ Improved the HTTP API responses
@@ 47,6 49,7 @@ and this project adheres to
+ Initial release
[Unreleased]: https://git.sr.ht/~mser/emote-server/tree/develop
+[1.4.0]: https://git.sr.ht/~mser/emote-server/tree/1.4.0
[1.3.1]: https://git.sr.ht/~mser/emote-server/tree/1.3.1
[1.3.0]: https://git.sr.ht/~mser/emote-server/tree/1.3.0
[1.2.0]: https://git.sr.ht/~mser/emote-server/tree/1.2.0
M package.json => package.json +1 -1
@@ 1,6 1,6 @@
{
"name": "emote-server",
- "version": "1.3.1",
+ "version": "1.4.0",
"description": "A simple application to list and serve emotes",
"author": "Michael Serajnik <m@mser.at>",
"license": "AGPL-3.0-or-later",
M src/config/index.js => src/config/index.js +1 -1
@@ 13,7 13,7 @@ if (frozenEmotesPath.startsWith('.')) {
}
module.exports = {
- version: '1.3.1',
+ version: '1.4.0',
apiVersion: 4,
publicUrl: process.env.EMOTE_SERVER_PUBLIC_URL || 'http://localhost',
port: process.env.EMOTE_SERVER_PORT || 8000,