Skip to content

Commit

Permalink
doc: update document for release/v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TE-ShiyuYang committed Oct 28, 2024
1 parent ecc7691 commit 3767eb3
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# NNCD release-v0.1.0
# NNCD release-v0.2.0
## Quickstart

# Build from source
Expand Down
10 changes: 9 additions & 1 deletion RELEASE.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
NNCD/v0.2.0
=====================
feature:
*update macos arm64 build script
*update building script and document.
*build the linux version of nnc-desktop under rootless docker

NNCD/v0.1.0
=====================
initial release
feature:
*initial release
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.2.0
4 changes: 2 additions & 2 deletions docs/install-manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ NNC-D provides both cpu and gpu build versions, here we use cpu version as an ex

2. Install NNC-D using the provided `.deb` package:
```bash
sudo apt install -y ./nncd_cpu_0.1.0_amd64.deb
sudo apt install -y ./nncd_cpu_0.2.0_amd64.deb
```

### Start NNC-D:
Expand All @@ -24,7 +24,7 @@ NNC-D provides both cpu and gpu build versions, here we use cpu version as an ex

### Installation Steps:

1. Double-click `NeuralNetworkConsoleDesktop-cpu Setup 0.1.0.exe` to start the installation.
1. Double-click `NeuralNetworkConsoleDesktop-cpu Setup 0.2.0.exe` to start the installation.
![Loading](/docs/images/loading.png)

2. Select the desired users for installation.
Expand Down
4 changes: 2 additions & 2 deletions electron_app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nncd",
"version": "0.1.0",
"version": "0.2.0",
"description": "NeuralNetworkConsole Desktop version",
"main": "main.js",
"scripts": {
Expand Down Expand Up @@ -72,7 +72,7 @@
"artifactName": "NeuralNetworkConsoleDesktop.exe"
},
"npmRebuild": false,
"buildVersion": "0.1.0",
"buildVersion": "0.2.0",
"publish": null
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion local_editor/python_modules/conf/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from os.path import expanduser
home = expanduser("~")

NNCD_VERSION = '0.1.0' # should be updated after test finished
NNCD_VERSION = '0.2.0' # should be updated after test finished
RESULT_DIR = os.path.join(home, 'nncd_bucket')
INSTANCE_CONF_DIR = f"{os.getcwd()}/py/server/instance_config/nncd_cli"

Expand Down
2 changes: 1 addition & 1 deletion local_editor/resource/docs/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<body>
<div id="aboutPopup" class="popup">
<div class="popup-content">
<h2>Version: 0.1.0</h2>
<h2>Version: 0.2.0</h2>
</div>
</div>
</body>
Expand Down

0 comments on commit 3767eb3

Please sign in to comment.