File tree 6 files changed +44
-7
lines changed
6 files changed +44
-7
lines changed 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() {
95
95
);
96
96
}
97
97
```
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 4
4
"" : {
5
5
"name" : " ordapi" ,
6
6
"dependencies" : {
7
- "typescript-eslint" : " ^8.22 .0" ,
7
+ "typescript-eslint" : " ^8.23 .0" ,
8
8
"zod" : " ^3.24.1" ,
9
9
},
10
10
"devDependencies" : {
11
- "@types/bun" : " ^1.2.1 " ,
11
+ "@types/bun" : " ^1.2.2 " ,
12
12
"@types/react" : " ^19.0.8" ,
13
13
"@types/react-dom" : " ^19.0.3" ,
14
14
"react" : " ^19.0.0" ,
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ function generateHtml() {
120
120
<div class="flex flex-col gap-2">
121
121
<div class="flex justify-between items-center">
122
122
<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>
124
124
<p class="text-green-400 mt-1">Simple TypeScript client for ord API.</p>
125
125
</div>
126
126
<div class="flex gap-4">
@@ -210,4 +210,4 @@ function generateHtml() {
210
210
console . log ( 'Documentation HTML generated successfully!' ) ;
211
211
}
212
212
213
- generateHtml ( ) ;
213
+ generateHtml ( ) ;
Original file line number Diff line number Diff line change 18
18
19
19
ci : install lint test
20
20
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
+
21
30
publish :
22
31
bun publish
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ordapi" ,
3
- "version" : " 0.0.2 " ,
3
+ "version" : " 0.0.3 " ,
4
4
"license" : " CC0-1.0" ,
5
5
"keywords" : [
6
6
" ordinals" ,
30
30
}
31
31
},
32
32
"dependencies" : {
33
- "typescript-eslint" : " ^8.22 .0" ,
33
+ "typescript-eslint" : " ^8.23 .0" ,
34
34
"zod" : " ^3.24.1"
35
35
},
36
36
"devDependencies" : {
37
- "@types/bun" : " ^1.2.1 " ,
37
+ "@types/bun" : " ^1.2.2 " ,
38
38
"@types/react" : " ^19.0.8" ,
39
39
"@types/react-dom" : " ^19.0.3" ,
40
40
"react" : " ^19.0.0" ,
You can’t perform that action at this time.
0 commit comments