Skip to content

Commit

Permalink
bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
pwalsh committed Feb 14, 2022
1 parent 6a20092 commit 6d3e547
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
SHELL := /bin/bash
USER := govflow
NAME := govflow
VERSION := 0.0.29-alpha
VERSION := 0.0.30-alpha
COMPOSE := docker-compose -f docker-compose/docker-compose.yml --compatibility
REPOSITORY := $(USER)/$(NAME)
DOCKER_HOST := ghcr.io
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@govflow/govflow",
"version": "0.0.29-alpha",
"version": "0.0.30-alpha",
"description": "An open, modular work order and workflow management system for local governments and resident satisfaction.",
"homepage": "https://github.com/govflow/govflow",
"main": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { storageRouter } from './storage';
const coreRoutes = Router();

coreRoutes.get('/', wrapHandler(async (req: Request, res: Response) => {
res.status(200).send({ data: { name: 'govflow', version: '0.0.29-alpha' } });
res.status(200).send({ data: { name: 'govflow', version: '0.0.30-alpha' } });
}))
coreRoutes.use('/services', serviceRouter);
coreRoutes.use('/service-requests', serviceRequestRouter);
Expand Down
2 changes: 1 addition & 1 deletion test/test-endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('Hit all API endpoints', function () {
it('should GET Root API information', async function () {
const res = await chai.request(app).get('/');
chai.assert.equal(res.status, 200);
chai.assert.equal(res.text, JSON.stringify({ data: { name: 'govflow', version: '0.0.29-alpha' } }));
chai.assert.equal(res.text, JSON.stringify({ data: { name: 'govflow', version: '0.0.30-alpha' } }));
});

it('should GET staff users for jurisdiction', async function () {
Expand Down

0 comments on commit 6d3e547

Please sign in to comment.