Skip to content

Commit

Permalink
Merge branch 'release/v1.11.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
bricerisingalgorand committed Aug 3, 2021
2 parents d009e8b + e95bb6e commit 9afe012
Show file tree
Hide file tree
Showing 14 changed files with 1,949 additions and 1,055 deletions.
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: "\U0001F41C Bug report"
about: Report a reproducible bug.
title: ''
labels: new-bug
assignees: ''

---

### Subject of the issue

<!-- Describe your issue here. -->

### Your environment

<!--
* Software version: `algod -v`
* Node status if applicable: `goal node status`
* Operating System details.
* In many cases log files and cadaver files are also useful to include. Since these files may be large, an Algorand developer may request them later. These files may include public addresses that you're participating with. If that is a concern please be sure to scrub that data.
-->

### Steps to reproduce

1.
2.

### Expected behaviour

### Actual behaviour
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: "\U0001F514 Feature Request"
about: Suggestions for how we can improve the algorand platform.
title: ''
labels: new-feature-request
assignees: ''
---

## Problem

<!-- What is the problem that we’re trying to solve? -->

## Solution

<!-- Do you have a potential/suggested solution? Document more than one if possible. -->

## Dependencies

<!-- Does the solution have any team or design dependencies? -->

## Urgency

<!-- What is the urgency here and why? -->
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ dist
tests/cucumber/features
tests/cucumber/browser/build
tests/browser/bundle.*
.github
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.11.0

## Added

- Signing support for rekeying to LogicSig/MultiSig account

# 1.10.1

## Added
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": "1.10.1",
"version": "1.11.0",
"description": "The official JavaScript SDK for Algorand",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/logic/logic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export function readProgram(
* @throws
* @returns true if success
*/
export function checkProgram(program: Uint8Array, args: Uint8Array[]) {
export function checkProgram(program: Uint8Array, args?: Uint8Array[]) {
const [, , success] = readProgram(program, args);
return success;
}
Expand Down
Loading

0 comments on commit 9afe012

Please sign in to comment.