Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

[0.0.6](https://github.com/raphjaph/ordapi/releases/tag/0.0.6) - 2025-02-12
---------------------------------------------------------------------------

### Added
- Add build step to justfile publish script (#27)
- Add back POST endpoints (#25)

[0.0.5](https://github.com/raphjaph/ordapi/releases/tag/0.0.5) - 2025-02-07
---------------------------------------------------------------------------

Expand Down
24 changes: 12 additions & 12 deletions bun.lock

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

2 changes: 1 addition & 1 deletion docs/generateHtml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function generateHtml() {

const config = {
repoAddress: 'https://github.com/raphjaph/ordapi',
version: 'v0.0.5'
version: 'v0.0.6'
};
const scriptsContent = fs.readFileSync('docs/scripts.js', 'utf-8');
const apiDocs = JSON.parse(fs.readFileSync('docs/api-docs.json', 'utf-8'));
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ prepare-release revision='master':
publish-release revision='master':
#!/usr/bin/env bash
set -euxo pipefail
rm -rf tmp/release
rm -rf tmp
git clone https://github.com/raphjaph/ordapi.git tmp/release
cd tmp/release
git checkout {{ revision }}
bun install
bun run build
bun publish
cd ../..
rm -rf tmp/release
rm -rf tmp
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ordapi",
"version": "0.0.5",
"version": "0.0.6",
"license": "CC0-1.0",
"homepage": "https://raphjaph.github.io/ordapi",
"docs": "https://raphjaph.github.io/ordapi",
Expand Down Expand Up @@ -32,8 +32,8 @@
}
},
"dependencies": {
"typescript-eslint": "^8.23.0",
"zod": "^3.24.1"
"typescript-eslint": "^8.24.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bun": "^1.2.2",
Expand Down