this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

@skyware/labeler 0.2.0

+2 -2
+1 -1
package.json
··· 2 2 "name": "@skyware/labeler", 3 3 "type": "module", 4 4 "description": "A lightweight alternative to Ozone for operating an atproto labeler.", 5 - "version": "0.1.13", 5 + "version": "0.2.0", 6 6 "main": "dist/index.js", 7 7 "types": "dist/index.d.ts", 8 8 "bin": "dist/bin.js",
+1 -1
src/LabelerServer.ts
··· 567 567 * Handler for the health check endpoint. 568 568 */ 569 569 healthHandler: QueryHandler = async (_req, res) => { 570 - const VERSION = "0.1.13"; 570 + const VERSION = "0.2.0"; 571 571 try { 572 572 await this.db.execute({ sql: "SELECT 1", args: [] }); 573 573 return res.send({ version: VERSION });