Skip to content

Commit faaa561

Browse files
authored
Prepare v13.0.0-beta.1 (Protocol 22) for release. (#779)
* Bump version, update changelog, prepare for beta release.
1 parent 2363643 commit faaa561

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.github/workflows/npm_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424

2525
- name: Publish npm package to both places
2626
run: |
27-
yarn publish --access public
27+
yarn publish --access public --tag protocol-22-beta
2828
sed -i -e 's#"@stellar/stellar-base"#"stellar-base"#' package.json
29-
yarn publish
29+
yarn publish --tag protocol-22-beta
3030
env:
3131
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3232

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
## Unreleased
44

55

6+
## [`v13.0.0-beta.1`](https://github.com/stellar/js-stellar-base/compare/v12.1.1...v13.0.0-beta.1)
7+
8+
**This is the first release that supports Protocol 22.** While the network has not upgraded yet, you can start integrating the new features into your codebase if you want a head start. Keep in mind that while the binary XDR is backwards-compatible, the naming and layout of structures is not. In other words, this build will continue to work on Protocol 21, but you may have to update code that references XDR directly.
9+
10+
### Breaking Changes
11+
* XDR definitions have been upgraded to Protocol 22 ([#777](https://github.com/stellar/js-stellar-base/pull/777)).
12+
13+
### Added
14+
* You can create contracts with constructors a new, optional parameter of `Operation.createCustomContract`, `constructorArgs: xdr.ScVal[]` ([#770](https://github.com/stellar/js-stellar-base/pull/770)).
15+
16+
617
## [`v12.1.1`](https://github.com/stellar/js-stellar-base/compare/v12.1.0...v12.1.1)
718

819
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stellar/stellar-base",
3-
"version": "12.1.1",
3+
"version": "13.0.0-beta.1",
44
"description": "Low-level support library for the Stellar network.",
55
"main": "./lib/index.js",
66
"browser": {

0 commit comments

Comments
 (0)