Skip to content

Commit 6881c8c

Browse files
authored
Merge pull request #2 from IBM/feature-submodule-revisions
Submodule revisions
2 parents 492127a + 532ee7b commit 6881c8c

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.1
2+
current_version = v0.1.0
33
commit = True
44
message = [skip ci] docs: Update version numbers from {current_version} -> {new_version}
55

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,5 @@ IBMService.cs.meta
9494
Logging.meta
9595
RequestObject.cs.meta
9696
Tests.meta
97-
Utilities.meta
97+
Utilities.meta
98+
package-lock.json.meta

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
55
[![CLA assistant](https://cla-assistant.io/readme/badge/IBM/unity-sdk-core)](https://cla-assistant.io/IBM/unity-sdk-core)
66

7-
The IBM Cloud Unity SDK Core is a core project of Unity SDKs generated using the IBM OpenAPI SDK generator. Generated services should use this package as a submodule of their generate Unity SDK.
7+
The IBM Cloud Unity SDK Core is a core project of Unity SDKs generated using the IBM OpenAPI SDK generator. The core should be added to the **`Assets`** directory of your Unity project
88

99
<details>
1010
<summary>Table of Contents</summary>
@@ -29,14 +29,9 @@ Ensure that you have the following prerequisites:
2929
* If using Unity 2018.2 or later you'll need to set **Scripting Runtime Version** and **Api Compatibility Level** in Build Settings to **.NET 4.x equivalent**. We need to access security options to enable TLS 1.2.
3030

3131
## Getting the IBM Unity SDK Core and adding it to Unity
32-
The IBM Unity SDK Core is mean to be used as a submodule in other generated Unity SDKs. The selected SDK release will point to a particular commit of the IBM Unity SDK Core. Clone the SDK into your Unity project's Assets directory, and initalize and update submodules.
32+
You can get the latest SDK Core release by clicking [here][latest_release_core].
3333

34-
```bash
35-
$ git clone [unity-sdk-url]
36-
$ cd [unity-sdk-directory]
37-
$ git submodule init
38-
$ git submodule update
39-
```
34+
The IBM Unity SDK Core is a dependency of Unity SDKs generated using the IBM OpenAPI SDK generator. It should be added to the **`Assets`** directory of your Unity project. _Optional: rename the Core directory from `unity-sdk-core` to `IBMSdkCore`_.
4035

4136
## Questions
4237

@@ -54,3 +49,4 @@ This library is licensed under Apache 2.0. Full license text is available in [LI
5449
See [CONTRIBUTING.md](.github/CONTRIBUTING.md).
5550

5651
[get_unity]: https://unity3d.com/get-unity
52+
[latest_release_core: https://github.com/IBM/unity-sdk-core/releases/latest

Utilities/Constants.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ public static class String
5252
/// URL for IBM Cloud onboarding
5353
/// </summary>
5454
public const string IBM_CLOUD_URL = "http://console.bluemix.net/registration";
55-
/// <summary>
56-
/// The version of the Unity SDK Core
55+
/// <summary>
56+
/// The version of the Unity SDK Core
5757
/// </summary>
58-
public const string CORE_VERSION = "0.0.1";
58+
public const string CORE_VERSION = "v0.1.0";
5959
}
6060

6161
/// <summary>

0 commit comments

Comments
 (0)