Skip to content

Commit

Permalink
Merge pull request #8 from restfulhead/release-part-2
Browse files Browse the repository at this point in the history
fix: initial release
  • Loading branch information
restfulhead authored Mar 8, 2024
2 parents de60496 + 45a6e8c commit 1a4d1eb
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ jobs:
IS_PRIVATE=`node -pe "require('./package.json').private"`
rm -rf .git
if [ "$IS_PRIVATE" != "true" ]; then
mkdir ./dist-temp
mv ./dist/* ./dist-temp
mv ./dist-temp ./dist/dist
cp ./package.json ./dist/
cd $topdir
echo "publishing $workspace/dist"
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.

12 changes: 12 additions & 0 deletions packages/ajv-openapi-request-response-validator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# v0.1.0 (Fri Mar 08 2024)

#### 🔩 Internal

- initial broken release

#### Authors: 1

- Patrick Ruhkopf ([@restfulhead](https://github.com/restfulhead))

---

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@restfulhead/ajv-openapi-request-response-validator",
"version": "0.0.0",
"version": "0.1.0",
"description": "AJV based implementation to validate http requests and responses against an OpenAPI schema",
"keywords": [
"azure",
Expand Down
2 changes: 1 addition & 1 deletion packages/azure-functions-openapi-validator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"main": "./dist/index.js",
"dependencies": {
"@azure/functions": "^4.2.0",
"@restfulhead/ajv-openapi-request-response-validator": "^0.0.0",
"@restfulhead/ajv-openapi-request-response-validator": "^0.1.0",
"ajv": "^8.12.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
Expand Down

0 comments on commit 1a4d1eb

Please sign in to comment.