Skip to content

Commit 4c22fe4

Browse files
author
Denis Angell
authored
Merge pull request #1 from Transia-RnD/0.9.9
RELEASE 0.9.9
2 parents 6f94f03 + 9561219 commit 4c22fe4

7 files changed

Lines changed: 42 additions & 2 deletions

File tree

.gitignore

Whitespace-only changes.

CHANGELOG.md

Whitespace-only changes.

Documentation/com.unity.xrplc.md

Whitespace-only changes.

LICENSE.md

Whitespace-only changes.

README.md

Whitespace-only changes.

RELEASE.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Xrpl C# Sdk Release Process
2+
3+
## Cutting a Release
4+
5+
The full process for cutting a release is as follows:
6+
7+
0. Checkout a new branch:
8+
`git checkout -b 1.0.0` # 1.0.0-release
9+
10+
1. Change the version in the package.json file:
11+
`"version": "0.9.9",`
12+
13+
3. Add, and commit the changes, push up the branch, and open a PR:
14+
`git add .`
15+
`git commit -m 'RELEASE 1.0.0'`
16+
`git push --set-upstream origin HEAD`
17+
18+
4. Open PR request
19+
20+
``
21+
22+
5. Once the PR is merged, checkout the `main` branch:
23+
`git checkout main`
24+
25+
6. Delete `main` branch (Optional):
26+
`git branch -d 1.0.0`
27+
28+
7. Make a new Git tag that matches the new version (make sure it is associated with the right commit SHA): FIXUP
29+
`git tag -a 1.0.0 -m "cut 1.0.0"`
30+
31+
8. Push up the tag from `main`:
32+
`git push origin 1.0.0`
33+
34+
## Packaging & Releasing
35+
36+
Download Asset Store Tools

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
"name": "com.unity.xrplc",
33
"displayName": "XRPL + Unity",
4-
"version": "0.0.1",
4+
"version": "0.9.9",
55
"unity": "2021.3",
6-
"author": "Denis Angell",
6+
"author": {
7+
"name" : "Denis Angell",
8+
"email" : "dangell@transia.co",
9+
"url" : "https://transia.co/"
10+
},
711
"description": "XRPL Unity SDK + Wallet Keystore",
812
"dependencies": {},
913
"repository": {

0 commit comments

Comments
 (0)