Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
jchartrand committed Nov 25, 2024
1 parent 11fbfc1 commit 6228c39
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 28 deletions.
33 changes: 6 additions & 27 deletions .husky/_/husky.sh
Original file line number Diff line number Diff line change
@@ -1,30 +1,9 @@
#!/bin/sh
if [ -z "$husky_skip_init" ]; then
debug () {
[ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1"
}
echo "husky - DEPRECATED
readonly hook_name="$(basename "$0")"
debug "starting $hook_name..."
Please remove the following two lines from $0:
if [ "$HUSKY" = "0" ]; then
debug "HUSKY env variable is set to 0, skipping hook"
exit 0
fi
#!/usr/bin/env sh
. \"\$(dirname -- \"\$0\")/_/husky.sh\"
if [ -f ~/.huskyrc ]; then
debug "sourcing ~/.huskyrc"
. ~/.huskyrc
fi

export readonly husky_skip_init=1
sh -e "$0" "$@"
exitCode="$?"

if [ $exitCode != 0 ]; then
echo "husky - $hook_name hook exited with code $exitCode (error)"
exit $exitCode
fi

exit 0
fi
They WILL FAIL in v10.0.0
"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# transaction-manager-service Changelog

## 0.3.0 - 2024-11-25

### Changed

- added test coverage
- added health check option

## 0.2.0 - 2024-10-11

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@digitalcredentials/transaction-service",
"description": "An express app for managing challenges in a DIDAuth exchange.",
"version": "0.2.0",
"version": "0.3.0",
"type": "module",
"scripts": {
"start": "node -r dotenv/config server.js",
Expand Down

0 comments on commit 6228c39

Please sign in to comment.