Browse Source

bump to version 1.2.0

master
Trent Larson 2 months ago
parent
commit
deedbefcad
  1. 5
      CHANGELOG.md
  2. 6
      README.md
  3. 2
      package.json
  4. 2
      src/server.ts

5
CHANGELOG.md

@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
### Changed in DB or environment
- Nothing
## [1.2.0]
### Added ### Added
- Replacement of an existing file - Replacement of an existing file
- Local resolver for did:ethr - Local resolver for did:ethr

6
README.md

@ -57,4 +57,8 @@ JWT=`node -e "$CODE"`; curl -X DELETE -H "Authorization: Bearer $JWT" http://loc
## deploy to prod subsequent times ## deploy to prod subsequent times
* Update version in server.js 'ping' endpoint. Add CHANGELOG.md entry. * Update version in package.json, server.js 'ping' endpoint, and CHANGELOG.md entry.
* Build the docker image.
* Bump version and add "-beta" in package.json & server.js 'ping' endpoint.

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "Images for Trade", "name": "Images for Trade",
"version": "1.2.0-beta", "version": "1.2.0",
"description": "", "description": "",
"license": "UNLICENSED", "license": "UNLICENSED",
"dependencies": { "dependencies": {

2
src/server.ts

@ -49,7 +49,7 @@ const uploadDir = 'uploads';
const uploadMulter = multer({ dest: uploadDir + '/' }); const uploadMulter = multer({ dest: uploadDir + '/' });
app.get('/ping', async (req, res) => { app.get('/ping', async (req, res) => {
res.send('pong - v 0.0.1'); // version res.send('pong - v 1.2.0'); // version
}); });
app.get('/image-limits', async (req, res) => { app.get('/image-limits', async (req, res) => {

Loading…
Cancel
Save