From 9d2353dbb6f6a6a731bead6b6e4ba02ebc4b1611 Mon Sep 17 00:00:00 2001 From: hadashi Date: Tue, 12 Oct 2021 12:39:43 +0900 Subject: [PATCH] 1.9.0 --- README.md | 2 +- VContainer/Assets/VContainer/package.json | 2 +- website/docs/getting-started/installation.mdx | 4 ++-- website/docusaurus.config.js | 2 +- .../current/getting-started/installation.mdx | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 17d822b3..b2d6460a 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Visit [vcontainer.hadashikick.jp](https://vcontainer.hadashikick.jp) to view the 1. Navigate to your project's Packages folder and open the manifest.json file. 2. Add this line below the "dependencies": { line - ```json title="Packages/manifest.json" - "jp.hadashikick.vcontainer": "https://github.com/hadashiA/VContainer.git?path=VContainer/Assets/VContainer#1.8.6", + "jp.hadashikick.vcontainer": "https://github.com/hadashiA/VContainer.git?path=VContainer/Assets/VContainer#1.9.0", ``` 3. UPM should now install the package. diff --git a/VContainer/Assets/VContainer/package.json b/VContainer/Assets/VContainer/package.json index 94ab37d2..6a3e26ef 100644 --- a/VContainer/Assets/VContainer/package.json +++ b/VContainer/Assets/VContainer/package.json @@ -1,7 +1,7 @@ { "name": "jp.hadashikick.vcontainer", "displayName": "VContainer", - "version": "1.8.6", + "version": "1.9.0", "unity": "2018.4", "description": "The extra fast DI (Dependency Injection) for Unity", "keywords": ["DI", "Dependency Injection", "DI Container"], diff --git a/website/docs/getting-started/installation.mdx b/website/docs/getting-started/installation.mdx index f0d4b5d5..ad016bc5 100644 --- a/website/docs/getting-started/installation.mdx +++ b/website/docs/getting-started/installation.mdx @@ -32,7 +32,7 @@ If you don't want to use `openupm-cli` (or if you're hosting VContainer on an al } ], "dependencies": { - "jp.hadashikick.vcontainer": "1.8.6" + "jp.hadashikick.vcontainer": "1.9.0" } } ``` @@ -42,7 +42,7 @@ If you don't want to use `openupm-cli` (or if you're hosting VContainer on an al Navigate to your project's `Packages` folder and open the `manifest.json` file. Then add this package somewhere in the `dependencies` block: ```json title="Packages/manifest.json" - "jp.hadashikick.vcontainer": "https://github.com/hadashiA/VContainer.git?path=VContainer/Assets/VContainer#1.8.6", + "jp.hadashikick.vcontainer": "https://github.com/hadashiA/VContainer.git?path=VContainer/Assets/VContainer#1.9.0", ``` UPM should now install the package. This is useful if you're maintaining a fork of VContainer for your own project but don't want to set up a private registry. diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index c08b8f3d..2fc44aa8 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -72,7 +72,7 @@ module.exports = { }, { href: 'https://github.com/hadashiA/VContainer/releases', - label: 'v1.8.6', + label: 'v1.9.0', position: 'right', }, { diff --git a/website/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/installation.mdx b/website/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/installation.mdx index 3b086be8..ea5c0686 100644 --- a/website/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/installation.mdx +++ b/website/i18n/ja/docusaurus-plugin-content-docs/current/getting-started/installation.mdx @@ -9,7 +9,7 @@ title: インストール 1. プロジェクトの `Packages/manifest.json` ファイルを開く。 2. `"dependencies": {` 行の下に以下を追記。 - ```json title="Packages/manifest.json" - "jp.hadashikick.vcontainer": "https://github.com/hadashiA/VContainer.git?path=VContainer/Assets/VContainer#1.8.6", + "jp.hadashikick.vcontainer": "https://github.com/hadashiA/VContainer.git?path=VContainer/Assets/VContainer#1.9.0", ``` 3. Unityでプロジェクトをリフレッシュすると、UPMがパッケージをインストールしてくれます。