Skip to content

Commit b26321b

Browse files
chore(release): 4.0.0-pre.3 [skip ci]
# [4.0.0-pre.3](v4.0.0-pre.2...v4.0.0-pre.3) (2022-11-23) ### Code Refactoring * rename `AlgoSdk` to `Algorand.Unity` ([#167](#167)) ([d135635](d135635)) ### BREAKING CHANGES * All `AlgoSdk` namespaces are now renamed to `Algorand.Unity`. A simple find and replace should fix it.
1 parent d135635 commit b26321b

File tree

3 files changed

+75
-18
lines changed

3 files changed

+75
-18
lines changed

.docfx/docfx.json

Lines changed: 53 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@
44
"src": [
55
{
66
"src": "..",
7-
"files": ["Runtime/**/*.cs", "Editor/**/*.cs"],
8-
"exclude": ["**/Libraries/**", "**/Plugins/**"]
7+
"files": [
8+
"Runtime/**/*.cs",
9+
"Editor/**/*.cs"
10+
],
11+
"exclude": [
12+
"**/Libraries/**",
13+
"**/Plugins/**"
14+
]
915
}
1016
],
1117
"filter": "filter.yml",
@@ -27,59 +33,86 @@
2733
},
2834
"content": [
2935
{
30-
"files": ["toc.yml", "index.md", "../README.md"]
36+
"files": [
37+
"toc.yml",
38+
"index.md",
39+
"../README.md"
40+
]
3141
},
3242
{
3343
"src": "manual",
34-
"files": ["toc.yml"],
44+
"files": [
45+
"toc.yml"
46+
],
3547
"dest": "manual"
3648
},
3749
{
3850
"src": "changelog",
39-
"files": ["toc.yml"],
51+
"files": [
52+
"toc.yml"
53+
],
4054
"dest": "changelog"
4155
},
4256
{
4357
"src": "..",
44-
"files": ["CHANGELOG.md"],
58+
"files": [
59+
"CHANGELOG.md"
60+
],
4561
"dest": "changelog"
4662
},
4763
{
4864
"src": "license",
49-
"files": ["toc.yml"],
65+
"files": [
66+
"toc.yml"
67+
],
5068
"dest": "license"
5169
},
5270
{
5371
"src": "..",
54-
"files": ["LICENSE.md", "Third Party Notices.md"],
72+
"files": [
73+
"LICENSE.md",
74+
"Third Party Notices.md"
75+
],
5576
"dest": "license"
5677
},
5778
{
5879
"src": "api",
59-
"files": ["*.yml"],
80+
"files": [
81+
"*.yml"
82+
],
6083
"dest": "api"
6184
},
6285
{
6386
"src": "../Documentation~",
64-
"files": ["**/*.md"],
65-
"exclude": ["TableOfContents.md"],
87+
"files": [
88+
"**/*.md"
89+
],
90+
"exclude": [
91+
"TableOfContents.md"
92+
],
6693
"dest": "manual"
6794
}
6895
],
6996
"dest": "../_site",
7097
"overwrite": [
7198
{
7299
"src": "..",
73-
"files": ["*/Algorand.Unity*/**/*.md"]
100+
"files": [
101+
"*/Algorand.Unity*/**/*.md"
102+
]
74103
}
75104
],
76105
"resource": [
77106
{
78-
"files": ["resources/**/*"]
107+
"files": [
108+
"resources/**/*"
109+
]
79110
},
80111
{
81112
"src": "../Documentation~",
82-
"files": ["images/**/*"],
113+
"files": [
114+
"images/**/*"
115+
],
83116
"dest": "resources"
84117
}
85118
],
@@ -92,7 +125,11 @@
92125
}
93126
}
94127
},
95-
"xref": ["https://normanderwan.github.io/UnityXrefMaps/xrefmap.yml"],
96-
"xrefService": ["https://xref.docs.microsoft.com/query?uid={uid}"]
128+
"xref": [
129+
"https://normanderwan.github.io/UnityXrefMaps/xrefmap.yml"
130+
],
131+
"xrefService": [
132+
"https://xref.docs.microsoft.com/query?uid={uid}"
133+
]
97134
}
98135
}

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# Changelog
2+
All notable changes to this package will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
7+
8+
# [4.0.0-pre.3](https://github.com/CareBoo/unity-algorand-sdk/compare/v4.0.0-pre.2...v4.0.0-pre.3) (2022-11-23)
9+
10+
11+
### Code Refactoring
12+
13+
* rename `AlgoSdk` to `Algorand.Unity` ([#167](https://github.com/CareBoo/unity-algorand-sdk/issues/167)) ([d135635](https://github.com/CareBoo/unity-algorand-sdk/commit/d1356352b1f099d328797fb0f202b7507cfa9a79))
14+
15+
16+
### BREAKING CHANGES
17+
18+
* All `AlgoSdk` namespaces are now renamed to `Algorand.Unity`. A simple find and
19+
replace should fix it.
20+
121
# Changelog
222

323
All notable changes to this package will be documented in this file.

package.json

Lines changed: 2 additions & 2 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": "4.0.0-pre.2",
4+
"version": "4.0.0-pre.3",
55
"unity": "2020.3",
66
"keywords": [
77
"algorand",
@@ -57,4 +57,4 @@
5757
"scripts": {
5858
"version": "./scripts/updateVersionUrl.sh && git add package.json .docfx/docfx.json README.md"
5959
}
60-
}
60+
}

0 commit comments

Comments
 (0)