V2.0.0 🎉

This commit is contained in:
AdamRamberg 2019-10-24 08:15:45 +02:00
parent a69e5c2f05
commit babb691792
10 changed files with 31 additions and 31 deletions

View File

@ -10,7 +10,7 @@
- <Fill in your change here>
# 2.0.0 (September 3, 2019)
# 2.0.0 (October 24, 2019)
_The release notes were introduced halfway through the work with version `2.0.0`. The list below might therefore not me 100% complete._

View File

@ -1,7 +1,7 @@
{
"name": "com.mambojambostudios.unity-atoms-core",
"displayName": "Unity Atoms Core",
"version": "2.0.0-beta.1",
"version": "2.0.0",
"unity": "2019.1",
"description": "Tiny modular pieces utilizing the power of Scriptable Objects",
"keywords": [

View File

@ -1,7 +1,7 @@
{
"name": "com.mambojambostudios.unity-atoms-mobile",
"displayName": "Unity Atoms Mobile",
"version": "2.0.0-beta.1",
"version": "2.0.0",
"unity": "2019.1",
"description": "Unity Atoms for your mobile project.",
"keywords": [
@ -18,6 +18,6 @@
"/Editor.meta"
],
"dependencies": {
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.1"
"com.mambojambostudios.unity-atoms-core": "2.0.0"
}
}

View File

@ -1,7 +1,7 @@
{
"name": "com.mambojambostudios.unity-atoms-mono-hooks",
"displayName": "Unity Atoms Mono Hooks",
"version": "2.0.0-beta.1",
"version": "2.0.0",
"unity": "2019.1",
"description": "Hook into Unity's lifecycle methods with Atom Events.",
"keywords": [
@ -18,6 +18,6 @@
"/Documentation.meta"
],
"dependencies": {
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.1"
"com.mambojambostudios.unity-atoms-core": "2.0.0"
}
}

View File

@ -1,7 +1,7 @@
{
"name": "com.mambojambostudios.unity-atoms-scene-mgmt",
"displayName": "Unity Atoms Scene Mgmt",
"version": "2.0.0-beta.1",
"version": "2.0.0",
"unity": "2019.1",
"description": "Unity Atoms to manage your scenes.",
"keywords": [
@ -20,6 +20,6 @@
"/Documentation.meta"
],
"dependencies": {
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.1"
"com.mambojambostudios.unity-atoms-core": "2.0.0"
}
}

View File

@ -1,7 +1,7 @@
{
"name": "com.mambojambostudios.unity-atoms-tags",
"displayName": "Unity Atoms Tags",
"version": "2.0.0-beta.1",
"version": "2.0.0",
"unity": "2019.1",
"description": "A replacement to Unity´s tags based on Unity Atoms.",
"keywords": [
@ -18,6 +18,6 @@
"/Documentation.meta"
],
"dependencies": {
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.1"
"com.mambojambostudios.unity-atoms-core": "2.0.0"
}
}

View File

@ -1,7 +1,7 @@
{
"name": "com.mambojambostudios.unity-atoms-ui",
"displayName": "Unity Atoms UI",
"version": "2.0.0-beta.1",
"version": "2.0.0",
"unity": "2019.1",
"description": "UI system using Unity Atoms.",
"keywords": [
@ -18,6 +18,6 @@
"/Documentation.meta"
],
"dependencies": {
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.1"
"com.mambojambostudios.unity-atoms-core": "2.0.0"
}
}

View File

@ -42,12 +42,12 @@ Add the following to your `manifest.json`:
],
"dependencies": {
...
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-mobile": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-mono-hooks": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-tags": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-scene-mgmt": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-ui": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-core": "2.0.0",
"com.mambojambostudios.unity-atoms-mobile": "2.0.0",
"com.mambojambostudios.unity-atoms-mono-hooks": "2.0.0",
"com.mambojambostudios.unity-atoms-tags": "2.0.0",
"com.mambojambostudios.unity-atoms-scene-mgmt": "2.0.0",
"com.mambojambostudios.unity-atoms-ui": "2.0.0",
...
}
}

View File

@ -33,12 +33,12 @@ Add the following to your `manifest.json`:
],
"dependencies": {
...
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-mobile": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-mono-hooks": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-tags": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-scene-mgmt": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-ui": "2.0.0-beta.1",
"com.mambojambostudios.unity-atoms-core": "2.0.0",
"com.mambojambostudios.unity-atoms-mobile": "2.0.0",
"com.mambojambostudios.unity-atoms-mono-hooks": "2.0.0",
"com.mambojambostudios.unity-atoms-tags": "2.0.0",
"com.mambojambostudios.unity-atoms-scene-mgmt": "2.0.0",
"com.mambojambostudios.unity-atoms-ui": "2.0.0",
...
}
}

View File

@ -1,7 +1,7 @@
{
"name": "com.mambojambostudios.unity-atoms",
"displayName": "Unity Atoms",
"version": "2.0.0-beta.1",
"version": "2.0.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
@ -18,12 +18,12 @@
"category": "Unity",
"scripts": {
"publish:all": "npm run publish:core && npm run publish:mobile && npm run publish:scene && npm run publish:tags && npm run publish:ui && npm run publish:mono",
"publish:core": "npm publish ./Packages/Core --tag beta",
"publish:mobile": "npm publish ./Packages/Mobile --tag beta",
"publish:scene": "npm publish ./Packages/SceneMgmt --tag beta",
"publish:tags": "npm publish ./Packages/Tags --tag beta",
"publish:ui": "npm publish ./Packages/UI --tag beta",
"publish:mono": "npm publish ./Packages/MonoHooks --tag beta",
"publish:core": "npm publish ./Packages/Core",
"publish:mobile": "npm publish ./Packages/Mobile",
"publish:scene": "npm publish ./Packages/SceneMgmt",
"publish:tags": "npm publish ./Packages/Tags",
"publish:ui": "npm publish ./Packages/UI",
"publish:mono": "npm publish ./Packages/MonoHooks",
"generate:docs": "node scripts/generateDocs.js",
"generate:docs:verbose": "node scripts/generateDocs.js --verbose"
},