Skip to content

Commit

Permalink
Merge branch 'release/v2.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
algojack committed Jan 3, 2023
2 parents 4781c16 + 112d3b0 commit 937511e
Show file tree
Hide file tree
Showing 128 changed files with 2,115 additions and 10,014 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# 2.0.0

## What's Changed
### Breaking Changes
* Remove `future` package. Move package contents to `transaction`.
* Remove `MakeLogicSigAccount` and replace with `MakeLogicSigAccountEscrow`. Mark `MakeLogicSig` as a private function as well, only intended for internal use.
* Rename `SignLogicsigTransaction` to `SignLogicSigTransaction`.
* Remove logicsig templates, `logic/langspec.json`, and all methods depending on it.
* Remove `DryrunTxnResult.Cost` in favor of 2 fields: `BudgetAdded` and `BudgetConsumed`. `cost` can be derived by `BudgetConsumed - BudgetAdded`.
* Remove v1 algod API (client/algod) due to API end-of-life (2022-12-01). Instead, use v2 algod API (client/v2/algod).
* Remove unused generated types: `CatchpointAbortResponse`, `CatchpointStartResponse`.

**Full Changelog**: https://github.com/algorand/go-algorand-sdk/compare/v1.24.0...v2.0.0

# 1.24.0
## What's Changed
### Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion auction/auction.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package auction

import (
"github.com/algorand/go-algorand-sdk/types"
"github.com/algorand/go-algorand-sdk/v2/types"
)

// MakeBid constructs a bid using the passed parameters. `bidderAddress` and
Expand Down
235 changes: 0 additions & 235 deletions client/algod/algod.go

This file was deleted.

Loading

0 comments on commit 937511e

Please sign in to comment.