Skip to content

Commit

Permalink
Merge pull request #7 from sony/feature/20241113-update-021-document
Browse files Browse the repository at this point in the history
update document for v0.2.1
  • Loading branch information
YukioOobuchi authored Nov 15, 2024
2 parents c7384de + d9ad270 commit 34e84a5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 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.2.0
# NNCD release-v0.2.1
## Quickstart

# Build from source
Expand Down
5 changes: 5 additions & 0 deletions RELEASE.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
NNCD/v0.2.1
=====================
feature:
*fix dynamic library loading for macos arm64 platform

NNCD/v0.2.0
=====================
feature:
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
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.2.0_amd64.deb
sudo apt install -y ./nncd_cpu_0.2.1_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.2.0.exe` to start the installation.
1. Double-click `NeuralNetworkConsoleDesktop-cpu Setup 0.2.1.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.2.0",
"version": "0.2.1",
"description": "NeuralNetworkConsole Desktop version",
"main": "main.js",
"scripts": {
Expand Down Expand Up @@ -72,7 +72,7 @@
"artifactName": "NeuralNetworkConsoleDesktop.exe"
},
"npmRebuild": false,
"buildVersion": "0.2.0",
"buildVersion": "0.2.1",
"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.2.0' # should be updated after test finished
NNCD_VERSION = '0.2.1' # 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.2.0</h2>
<h2>Version: 0.2.1</h2>
</div>
</div>
</body>
Expand Down

0 comments on commit 34e84a5

Please sign in to comment.