Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# v3.5.1

<!-- Release notes generated using configuration in .github/release.yml at release/v3.5.1 -->

## What's Changed

### Enhancements

- Types: Support using txnAccess in addMethodCall by @gmalouf in https://github.com/algorand/js-algorand-sdk/pull/1003
- Apps: Support for reject-version on application call transactions and txnAccess encoding tweaks by @gmalouf in https://github.com/algorand/js-algorand-sdk/pull/1004

**Full Changelog**: https://github.com/algorand/js-algorand-sdk/compare/v3.5.0...v3.5.1

# v3.5.0

<!-- Release notes generated using configuration in .github/release.yml at release/v3.5.0 -->
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Include a minified browser bundle directly in your HTML like so:

```html
<script
src="https://unpkg.com/algosdk@v3.5.0/dist/browser/algosdk.min.js"
integrity="sha384-xClQGD8Cj78RAehQO2QmWnWfAMmKJHH6PTxlY8+WMnpAPczEKxiPBv1FdEP8Afhl"
src="https://unpkg.com/algosdk@v3.5.1/dist/browser/algosdk.min.js"
integrity="sha384-2fmbkTwLmRDxXVmtuXZtLDy7LwqPBehlsGmFgXfAyu+oTQ2Lr8OWdU+Md/1DOa0s"
crossorigin="anonymous"
></script>
```
Expand All @@ -34,8 +34,8 @@ or

```html
<script
src="https://cdn.jsdelivr.net/npm/algosdk@v3.5.0/dist/browser/algosdk.min.js"
integrity="sha384-xClQGD8Cj78RAehQO2QmWnWfAMmKJHH6PTxlY8+WMnpAPczEKxiPBv1FdEP8Afhl"
src="https://cdn.jsdelivr.net/npm/algosdk@v3.5.1/dist/browser/algosdk.min.js"
integrity="sha384-2fmbkTwLmRDxXVmtuXZtLDy7LwqPBehlsGmFgXfAyu+oTQ2Lr8OWdU+Md/1DOa0s"
crossorigin="anonymous"
></script>
```
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "algosdk",
"version": "3.5.0",
"version": "3.5.1",
"description": "The official JavaScript SDK for Algorand",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down
Loading