Skip to content

Commit d105a23

Browse files
committed
bump up version to v3.2.0
1 parent 190cd07 commit d105a23

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# v3.2.0
2+
3+
<!-- Release notes generated using configuration in .github/release.yml at release/v3.2.0 -->
4+
5+
## What's Changed
6+
7+
### Enhancements
8+
9+
- Blockheaders: Basic BlockHeaders API support. by @gmalouf in https://github.com/algorand/js-algorand-sdk/pull/926
10+
- Dependencies: Bump webpack from 5.89.0 to 5.97.1 by @dependabot in https://github.com/algorand/js-algorand-sdk/pull/930
11+
- feat: add Address as an ABIValue and handle encoding an Address by @joe-p in https://github.com/algorand/js-algorand-sdk/pull/911
12+
- API: Support for header-only flag on /v2/block algod endpoint. by @github-actions in https://github.com/algorand/js-algorand-sdk/pull/939
13+
14+
**Full Changelog**: https://github.com/algorand/js-algorand-sdk/compare/v3.1.0...v3.2.0
15+
116
# v3.1.0
217

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

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Include a minified browser bundle directly in your HTML like so:
2424

2525
```html
2626
<script
27-
src="https://unpkg.com/algosdk@v3.1.0/dist/browser/algosdk.min.js"
28-
integrity="sha384-xqUrJcyrZRXbDnjLdCC1ZuMEVm2VMF/tHz0PUvm4wN0qXemGRXYIX19U2alJ27hB"
27+
src="https://unpkg.com/algosdk@v3.2.0/dist/browser/algosdk.min.js"
28+
integrity="sha384-P3wogHQ1+Zf+KQbCx+X4AXICZ0I9nV2FkJuL/5QJ7xQYv44ctvHyz026hnxuhLDR"
2929
crossorigin="anonymous"
3030
></script>
3131
```
@@ -34,8 +34,8 @@ or
3434

3535
```html
3636
<script
37-
src="https://cdn.jsdelivr.net/npm/algosdk@v3.1.0/dist/browser/algosdk.min.js"
38-
integrity="sha384-xqUrJcyrZRXbDnjLdCC1ZuMEVm2VMF/tHz0PUvm4wN0qXemGRXYIX19U2alJ27hB"
37+
src="https://cdn.jsdelivr.net/npm/algosdk@v3.2.0/dist/browser/algosdk.min.js"
38+
integrity="sha384-P3wogHQ1+Zf+KQbCx+X4AXICZ0I9nV2FkJuL/5QJ7xQYv44ctvHyz026hnxuhLDR"
3939
crossorigin="anonymous"
4040
></script>
4141
```

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algosdk",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "The official JavaScript SDK for Algorand",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

0 commit comments

Comments
 (0)