Skip to content

Commit

Permalink
fix: update agent version (libp2p#2845)
Browse files Browse the repository at this point in the history
Prefix the agent version name with `js-`
  • Loading branch information
achingbrain authored and acul71 committed Dec 1, 2024
1 parent e2207af commit 60b4459
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/libp2p/scripts/update-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ const pkg = JSON.parse(
await writeFile(
new URL('../src/version.ts', import.meta.url),
`export const version = '${pkg.version}'
export const name = '${pkg.name}'
export const name = 'js-${pkg.name}'
`
)
2 changes: 1 addition & 1 deletion packages/libp2p/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const version = '0.0.0'
export const name = 'libp2p'
export const name = 'js-libp2p'

0 comments on commit 60b4459

Please sign in to comment.