Skip to content

Commit a29cdac

Browse files
chore(release): 5.1.0-pre.1 [skip ci]
# [5.1.0-pre.1](v5.0.0...v5.1.0-pre.1) (2023-10-24) ### Bug Fixes * **kmd:** 🐛 fix error if txn indices supplied are more than txns ([52328ad](52328ad)) ### Features * ✨ add `AlgorandNetwork.LocalNet` enum value ([f7a9fd7](f7a9fd7)) * ✨ add default client `ScriptableObject`s for easy referencing ([a4ea014](a4ea014)) * **abi:** ✨ add `AbiContractImporter` and `ContractAsset` ([a6456da](a6456da)) * **abi:** ✨ add `InterfaceImporter` for `interface.json` files describing abi interfaces ([1d6c7ad](1d6c7ad)) * **accounts:** ✨ add `AccountAsset` base class ([dde5ee0](dde5ee0)) * **algod:** ✨ add `AlgodClientAsset` ([c8e0928](c8e0928)) * **algod:** ✨ add `AlgodClientAsset` to be used for storing algod info ([57b7374](57b7374)) * **applications:** ✨ add `TealImporter` ([10cc011](10cc011)) * **assets:** ✨ add `AlgorandStandardAsset` for creating tokens ([af702e0](af702e0)) * **indexer:** ✨ add `IndexerClientAsset` ([da20c6f](da20c6f)) * **indexer:** ✨ add `IndexerClientAsset` to store indexer info ([30fb9e9](30fb9e9)) * **kmd:** ✨ add `KmdClientAsset` ([d439e80](d439e80)) * **kmd:** ✨ add `KmdClientAsset` to store kmd info ([aba4efb](aba4efb))
1 parent af702e0 commit a29cdac

File tree

6 files changed

+35
-11
lines changed

6 files changed

+35
-11
lines changed

.docfx/docfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
}
118118
],
119119
"sitemap": {
120-
"baseUrl": "https://careboo.github.io/unity-algorand-sdk/5.0",
120+
"baseUrl": "https://careboo.github.io/unity-algorand-sdk/5.1",
121121
"changefreq": "monthly",
122122
"fileOptions": {
123123
"api/*": {

Algorand.Unity.AssetStore/Packages/com.careboo.unity-algorand-sdk/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.careboo.unity-algorand-sdk",
33
"displayName": "Algorand.Unity",
4-
"version": "5.0.0",
4+
"version": "5.1.0-pre.1",
55
"unity": "2021.3",
66
"keywords": [
77
"algorand",
@@ -21,9 +21,9 @@
2121
"access": "public"
2222
},
2323
"repository": "github:CareBoo/unity-algorand-sdk",
24-
"changelogUrl": "https://careboo.github.io/unity-algorand-sdk/5.0/changelog",
25-
"documentationUrl": "https://careboo.github.io/unity-algorand-sdk/5.0",
26-
"licensesUrl": "https://careboo.github.io/unity-algorand-sdk/5.0/license",
24+
"changelogUrl": "https://careboo.github.io/unity-algorand-sdk/5.1/changelog",
25+
"documentationUrl": "https://careboo.github.io/unity-algorand-sdk/5.1",
26+
"licensesUrl": "https://careboo.github.io/unity-algorand-sdk/5.1/license",
2727
"author": {
2828
"name": "CareBoo",
2929
"url": "https://github.com/CareBoo"

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77

8+
# [5.1.0-pre.1](https://github.com/CareBoo/unity-algorand-sdk/compare/v5.0.0...v5.1.0-pre.1) (2023-10-24)
9+
10+
11+
### Bug Fixes
12+
13+
* **kmd:** :bug: fix error if txn indices supplied are more than txns ([52328ad](https://github.com/CareBoo/unity-algorand-sdk/commit/52328ad6c3ece39432c3429fd993cb9721feb0ef))
14+
15+
16+
### Features
17+
18+
* :sparkles: add `AlgorandNetwork.LocalNet` enum value ([f7a9fd7](https://github.com/CareBoo/unity-algorand-sdk/commit/f7a9fd790e35594f3c58e4e0a3d58c98dc54cb25))
19+
* :sparkles: add default client `ScriptableObject`s for easy referencing ([a4ea014](https://github.com/CareBoo/unity-algorand-sdk/commit/a4ea0140cb5b376e131aada98063ab8988a31523))
20+
* **abi:** :sparkles: add `AbiContractImporter` and `ContractAsset` ([a6456da](https://github.com/CareBoo/unity-algorand-sdk/commit/a6456daed9000d41ef57f545fb3ccd1e5565c224))
21+
* **abi:** :sparkles: add `InterfaceImporter` for `interface.json` files describing abi interfaces ([1d6c7ad](https://github.com/CareBoo/unity-algorand-sdk/commit/1d6c7addc3edf05929473874766ba1d87d622a09))
22+
* **accounts:** :sparkles: add `AccountAsset` base class ([dde5ee0](https://github.com/CareBoo/unity-algorand-sdk/commit/dde5ee06e73b3cb4f7f85dd886a85147927b3092))
23+
* **algod:** :sparkles: add `AlgodClientAsset` ([c8e0928](https://github.com/CareBoo/unity-algorand-sdk/commit/c8e092834f0ac730eeeddc41423a9048e4d81847))
24+
* **algod:** :sparkles: add `AlgodClientAsset` to be used for storing algod info ([57b7374](https://github.com/CareBoo/unity-algorand-sdk/commit/57b7374b7536247cfd49f628285c30d667d3aeb5))
25+
* **applications:** :sparkles: add `TealImporter` ([10cc011](https://github.com/CareBoo/unity-algorand-sdk/commit/10cc01184fb34b4fde00603a652d2397b461c373))
26+
* **assets:** :sparkles: add `AlgorandStandardAsset` for creating tokens ([af702e0](https://github.com/CareBoo/unity-algorand-sdk/commit/af702e072dcedee66d87cd76da578fd389756dc7))
27+
* **indexer:** :sparkles: add `IndexerClientAsset` ([da20c6f](https://github.com/CareBoo/unity-algorand-sdk/commit/da20c6fcee5bd6a9fa2e70250390253aac54a97d))
28+
* **indexer:** :sparkles: add `IndexerClientAsset` to store indexer info ([30fb9e9](https://github.com/CareBoo/unity-algorand-sdk/commit/30fb9e9b66eaa8cb0ab0bc1251aba5363b52dbda))
29+
* **kmd:** :sparkles: add `KmdClientAsset` ([d439e80](https://github.com/CareBoo/unity-algorand-sdk/commit/d439e80da755af7bc817bf9fab85b77eeca25250))
30+
* **kmd:** :sparkles: add `KmdClientAsset` to store kmd info ([aba4efb](https://github.com/CareBoo/unity-algorand-sdk/commit/aba4efb53c72771739072800864b3779e3bbdbdd))
31+
832
# [5.0.0](https://github.com/CareBoo/unity-algorand-sdk/compare/v4.1.0...v5.0.0) (2023-10-13)
933

1034

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Read [Getting Started](docs/getting_started.md) to learn the basic workflows for
143143

144144
### Documentation Site
145145

146-
Docs for this version were generated at https://careboo.github.io/unity-algorand-sdk/5.0.
146+
Docs for this version were generated at https://careboo.github.io/unity-algorand-sdk/5.1.
147147

148148
### Samples
149149

Runtime/Algorand.Unity/Util/DocUrl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace Algorand.Unity
22
{
33
internal static class DocUrl
44
{
5-
internal const string Base = "https://careboo.github.io/unity-algorand-sdk/5.0/";
5+
internal const string Base = "https://careboo.github.io/unity-algorand-sdk/5.1/";
66
internal const string Api = Base + "api/";
77
}
88
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.careboo.unity-algorand-sdk",
33
"displayName": "Algorand.Unity",
4-
"version": "5.0.0",
4+
"version": "5.1.0-pre.1",
55
"unity": "2021.3",
66
"keywords": [
77
"algorand",
@@ -21,9 +21,9 @@
2121
"access": "public"
2222
},
2323
"repository": "github:CareBoo/unity-algorand-sdk",
24-
"changelogUrl": "https://careboo.github.io/unity-algorand-sdk/5.0/changelog",
25-
"documentationUrl": "https://careboo.github.io/unity-algorand-sdk/5.0",
26-
"licensesUrl": "https://careboo.github.io/unity-algorand-sdk/5.0/license",
24+
"changelogUrl": "https://careboo.github.io/unity-algorand-sdk/5.1/changelog",
25+
"documentationUrl": "https://careboo.github.io/unity-algorand-sdk/5.1",
26+
"licensesUrl": "https://careboo.github.io/unity-algorand-sdk/5.1/license",
2727
"author": {
2828
"name": "CareBoo",
2929
"url": "https://github.com/CareBoo"

0 commit comments

Comments
 (0)