Skip to content

Commit a0aa7d1

Browse files
authored
fix: use latest tag for our beta versions for now (#2090)
1 parent dd856fc commit a0aa7d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ jobs:
252252
- name: Publish to npm
253253
run: |
254254
if [[ "$PACKAGE_VERSION" == *beta* ]]; then
255-
npm publish --access=public --tag beta
255+
npm publish --access=public --tag latest
256256
elif [[ "$PACKAGE_VERSION" == *alpha* ]]; then
257257
npm publish --access=public --tag alpha
258258
else

sdk/src/pyth/pythLazerSubscriber.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ export class PythLazerSubscriber {
270270
}
271271

272272
/**
273-
* Unsubscribes from all Pyth Lazer price feeds and shuts down WebSocket connections.
273+
* Unsubscribes from all Pyth Lazer price feeds and closes WebSocket connections.
274274
*/
275275
async unsubscribe() {
276276
this.isUnsubscribing = true;

0 commit comments

Comments
 (0)