File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ Changelog
2+ =========
3+
4+ [ 0.0.3] ( https://github.com/raphjaph/ordapi/releases/tag/0.0.3 ) - 2025-02-04
5+ ---------------------------------------------------------------------------
6+
7+ ### Added
8+ - Add name to Docs workflow (#16 )
9+ - Add documentation (#14 )
10+ - Add License and badges (#13 )
11+ - Remove unnecessary awaits (#12 )
12+ - Adding remaining endpoints (#11 )
13+ - Publish 0.0.2 (#8 )
14+ - Add installation and usage instructions to README (#7 )
15+ - Add block-related endpoints (#5 )
16+ - Add CI (#6 )
17+ - Init TypeScript library (#2 )
18+ - Fix README (#1 )
19+ - Initial commit
Original file line number Diff line number Diff line change @@ -95,3 +95,12 @@ function App() {
9595 );
9696}
9797```
98+
99+ ### Publish release
100+
101+ - update ` package.json ` version
102+ - update version in ` docs/generateHtml.ts `
103+ - update all dependencies (` bun update ` )
104+ - prepare the CHANGELOG
105+ - open release PR on github
106+ - ` bun publish `
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ function generateHtml() {
120120 <div class="flex flex-col gap-2">
121121 <div class="flex justify-between items-center">
122122 <div>
123- <h1 class="text-2xl font-bold">OrdAPI v0.0.2 </h1>
123+ <h1 class="text-2xl font-bold">OrdAPI v0.0.3 </h1>
124124 <p class="text-green-400 mt-1">Simple TypeScript client for ord API.</p>
125125 </div>
126126 <div class="flex gap-4">
@@ -210,4 +210,4 @@ function generateHtml() {
210210 console . log ( 'Documentation HTML generated successfully!' ) ;
211211}
212212
213- generateHtml ( ) ;
213+ generateHtml ( ) ;
Original file line number Diff line number Diff line change 1818
1919ci : install lint test
2020
21+ prepare-changelog revision = ' master':
22+ #!/usr/bin/env bash
23+ set -euxo pipefail
24+ git checkout {{ revision }}
25+ git pull origin {{ revision }}
26+ echo >> CHANGELOG.md
27+ git log --pretty=' format:- %s' >> CHANGELOG.md
28+ $EDITOR CHANGELOG.md
29+
2130publish :
2231 bun publish
Original file line number Diff line number Diff line change 11{
22 "name" : " ordapi" ,
3- "version" : " 0.0.2 " ,
3+ "version" : " 0.0.3 " ,
44 "license" : " CC0-1.0" ,
55 "keywords" : [
66 " ordinals" ,
3030 }
3131 },
3232 "dependencies" : {
33- "typescript-eslint" : " ^8.22 .0" ,
33+ "typescript-eslint" : " ^8.23 .0" ,
3434 "zod" : " ^3.24.1"
3535 },
3636 "devDependencies" : {
37- "@types/bun" : " ^1.2.1 " ,
37+ "@types/bun" : " ^1.2.2 " ,
3838 "@types/react" : " ^19.0.8" ,
3939 "@types/react-dom" : " ^19.0.3" ,
4040 "react" : " ^19.0.0" ,
You can’t perform that action at this time.
0 commit comments