Skip to content

Commit

Permalink
chore(release): 4.0.0-pre.3 [skip ci]
Browse files Browse the repository at this point in the history
# [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.
  • Loading branch information
semantic-release-bot committed Nov 23, 2022
1 parent d135635 commit b26321b
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 18 deletions.
69 changes: 53 additions & 16 deletions .docfx/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@
"src": [
{
"src": "..",
"files": ["Runtime/**/*.cs", "Editor/**/*.cs"],
"exclude": ["**/Libraries/**", "**/Plugins/**"]
"files": [
"Runtime/**/*.cs",
"Editor/**/*.cs"
],
"exclude": [
"**/Libraries/**",
"**/Plugins/**"
]
}
],
"filter": "filter.yml",
Expand All @@ -27,59 +33,86 @@
},
"content": [
{
"files": ["toc.yml", "index.md", "../README.md"]
"files": [
"toc.yml",
"index.md",
"../README.md"
]
},
{
"src": "manual",
"files": ["toc.yml"],
"files": [
"toc.yml"
],
"dest": "manual"
},
{
"src": "changelog",
"files": ["toc.yml"],
"files": [
"toc.yml"
],
"dest": "changelog"
},
{
"src": "..",
"files": ["CHANGELOG.md"],
"files": [
"CHANGELOG.md"
],
"dest": "changelog"
},
{
"src": "license",
"files": ["toc.yml"],
"files": [
"toc.yml"
],
"dest": "license"
},
{
"src": "..",
"files": ["LICENSE.md", "Third Party Notices.md"],
"files": [
"LICENSE.md",
"Third Party Notices.md"
],
"dest": "license"
},
{
"src": "api",
"files": ["*.yml"],
"files": [
"*.yml"
],
"dest": "api"
},
{
"src": "../Documentation~",
"files": ["**/*.md"],
"exclude": ["TableOfContents.md"],
"files": [
"**/*.md"
],
"exclude": [
"TableOfContents.md"
],
"dest": "manual"
}
],
"dest": "../_site",
"overwrite": [
{
"src": "..",
"files": ["*/Algorand.Unity*/**/*.md"]
"files": [
"*/Algorand.Unity*/**/*.md"
]
}
],
"resource": [
{
"files": ["resources/**/*"]
"files": [
"resources/**/*"
]
},
{
"src": "../Documentation~",
"files": ["images/**/*"],
"files": [
"images/**/*"
],
"dest": "resources"
}
],
Expand All @@ -92,7 +125,11 @@
}
}
},
"xref": ["https://normanderwan.github.io/UnityXrefMaps/xrefmap.yml"],
"xrefService": ["https://xref.docs.microsoft.com/query?uid={uid}"]
"xref": [
"https://normanderwan.github.io/UnityXrefMaps/xrefmap.yml"
],
"xrefService": [
"https://xref.docs.microsoft.com/query?uid={uid}"
]
}
}
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# Changelog
All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


# [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)


### Code Refactoring

* 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))


### BREAKING CHANGES

* All `AlgoSdk` namespaces are now renamed to `Algorand.Unity`. A simple find and
replace should fix it.

# Changelog

All notable changes to this package will be documented in this file.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.careboo.unity-algorand-sdk",
"displayName": "Algorand.Unity",
"version": "4.0.0-pre.2",
"version": "4.0.0-pre.3",
"unity": "2020.3",
"keywords": [
"algorand",
Expand Down Expand Up @@ -57,4 +57,4 @@
"scripts": {
"version": "./scripts/updateVersionUrl.sh && git add package.json .docfx/docfx.json README.md"
}
}
}

0 comments on commit b26321b

Please sign in to comment.