Skip to content

Commit

Permalink
Merge branch 'release/v1.14.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
onetechnical committed Mar 7, 2022
2 parents 97021ab + ffe2d3c commit 159b564
Show file tree
Hide file tree
Showing 11 changed files with 815 additions and 461 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# v1.14.0

## Added

- Add stateproof keyreg field (#463)

## Changed

- Implement C2C tests (#498)
- Moving from travis to circleci (#507)
- Add installation instructions for vite users (#512)
- Update langspec for TEAL 6 (#518)
- Docs for `lookupAssetByID` and `lookupAccountTransactions` (#516)
- Make FromObject parameter IntelliSense human readable (#528)
- Bump url-parse from 1.5.1 to 1.5.8 (#529)

## Fixed

- Use HTTP request format arg to determine response type (#532)
- Update chromedriver (#535)

# v1.14.0-beta.1

## Added
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Include a minified browser bundle directly in your HTML like so:

```html
<script
src="https://unpkg.com/[email protected]-beta.1/dist/browser/algosdk.min.js"
integrity="sha384-GDxzwLVcHrypyA8CcFGLiOne9xqCWuLz9Bfay2fNICEkCuYBUvkC5g0bnY5aeoZC"
src="https://unpkg.com/[email protected]/dist/browser/algosdk.min.js"
integrity="sha384-ByDr5J6amcNY9qTbvonF4W+4BiDtYexo0oxc91Jedc9D/OPncbWAQzj2otxLa5cF"
crossorigin="anonymous"
></script>
```
Expand All @@ -32,8 +32,8 @@ or

```html
<script
src="https://cdn.jsdelivr.net/npm/[email protected]-beta.1/dist/browser/algosdk.min.js"
integrity="sha384-GDxzwLVcHrypyA8CcFGLiOne9xqCWuLz9Bfay2fNICEkCuYBUvkC5g0bnY5aeoZC"
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/algosdk.min.js"
integrity="sha384-ByDr5J6amcNY9qTbvonF4W+4BiDtYexo0oxc91Jedc9D/OPncbWAQzj2otxLa5cF"
crossorigin="anonymous"
></script>
```
Expand Down
126 changes: 63 additions & 63 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "algosdk",
"version": "1.14.0-beta.1",
"version": "1.14.0",
"description": "The official JavaScript SDK for Algorand",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"assert": "^2.0.0",
"chromedriver": "^97.0.0",
"chromedriver": "^99.0.0",
"concurrently": "^6.2.0",
"coveralls": "^3.1.0",
"cucumber": "^5.1.0",
Expand All @@ -59,7 +59,7 @@
"source-map-loader": "^2.0.2",
"ts-loader": "^8.3.0",
"ts-node": "^10.0.0",
"typedoc": "^0.22.10",
"typedoc": "^0.22.11",
"typedoc-plugin-missing-exports": "^0.22.6",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.2.3",
Expand Down
Loading

0 comments on commit 159b564

Please sign in to comment.