diff --git a/.docfx/docfx.json b/.docfx/docfx.json index bca741530..a16eba09d 100644 --- a/.docfx/docfx.json +++ b/.docfx/docfx.json @@ -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", @@ -27,42 +33,63 @@ }, "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" } ], @@ -70,16 +97,22 @@ "overwrite": [ { "src": "..", - "files": ["*/Algorand.Unity*/**/*.md"] + "files": [ + "*/Algorand.Unity*/**/*.md" + ] } ], "resource": [ { - "files": ["resources/**/*"] + "files": [ + "resources/**/*" + ] }, { "src": "../Documentation~", - "files": ["images/**/*"], + "files": [ + "images/**/*" + ], "dest": "resources" } ], @@ -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}" + ] } } diff --git a/CHANGELOG.md b/CHANGELOG.md index 512316b6b..35088d3ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/package.json b/package.json index b2acf253f..1006637c6 100644 --- a/package.json +++ b/package.json @@ -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", @@ -57,4 +57,4 @@ "scripts": { "version": "./scripts/updateVersionUrl.sh && git add package.json .docfx/docfx.json README.md" } -} \ No newline at end of file +}