Skip to content

Commit

Permalink
Update changelog, bump version, upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed Nov 8, 2024
1 parent 537a187 commit e101a89
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ A breaking change will get clearly marked in this log.
## Unreleased


## [v13.0.0-rc.1](https://github.com/stellar/js-stellar-sdk/compare/v12.3.0...v13.0.0-rc.1)


## [v13.0.0-beta.1](https://github.com/stellar/js-stellar-sdk/compare/v12.3.0...v13.0.0-beta.1)

### Breaking Changes
Expand All @@ -15,7 +18,7 @@ A breaking change will get clearly marked in this log.
- The Node.js code will now Babelify to Node 18 instead of Node 16, but we stopped supporting Node 16 long ago so this shouldn't be a breaking change.

- `SentTransaction.init` and `new SentTransaction` now take _one_ (1) argument instead of _two_ (2). The first argument had previously been deprecated and ignored. To update:

```diff
-SentTransaction(nonsense, realStuff)
+SentTransaction(realStuff)
Expand Down
8 changes: 7 additions & 1 deletion config/.jsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
"source": {
"include": ["lib/", "js-stellar-base/src"],
"includePattern": "\\.(js|ts)$",
"exclude": "js-stellar-base/src/generated"
"exclude": [
"js-stellar-base/src/generated",
"lib/minimal",
"lib/no-axios",
"lib/no-eventsource",
"lib/contract/utils.d.ts"
]
},
"opts": {
"encoding": "utf8",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stellar/stellar-sdk",
"version": "13.0.0-beta.1",
"version": "13.0.0-rc.1",
"description": "A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.",
"keywords": [
"stellar"
Expand Down

0 comments on commit e101a89

Please sign in to comment.