Skip to content

Commit 0cf4fb7

Browse files
committed
update version
1 parent de38a57 commit 0cf4fb7

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To get started download the executables from the release page or follow the inst
2121
- Download the binary:
2222

2323
```
24-
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16/nuru_Linux_amd64.tar.gz
24+
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17/nuru_Linux_amd64.tar.gz
2525
```
2626

2727
- Extract the file to make global available:
@@ -44,13 +44,13 @@ nuru -v
4444
- For apple silicon mac use:
4545

4646
```
47-
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16/nuru_Darwin_arm64.tar.gz
47+
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17/nuru_Darwin_arm64.tar.gz
4848
```
4949

5050
- For apple intel mac use:
5151

5252
```
53-
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16/nuru_Darwin_amd64.tar.gz
53+
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17/nuru_Darwin_amd64.tar.gz
5454
```
5555
5656
- Extract the file to make global available:
@@ -88,7 +88,7 @@ To install Nuru on your Android device using Termux, follow these steps:
8888

8989
3. **Download the Nuru package**:
9090
```bash
91-
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16/nuru_Android_arm64.tar.gz
91+
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17/nuru_Android_arm64.tar.gz
9292
```
9393

9494
4. **Extract the files to the target directory**:
@@ -114,14 +114,14 @@ To install Nuru on your Android device using Termux, follow these steps:
114114
For a more streamlined installation, you can use the following one-liner:
115115

116116
```bash
117-
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16/nuru_Android_arm64.tar.gz && mkdir -p /data/data/com.termux/files/usr/share/nuru && tar -xzvf nuru_Android_arm64.tar.gz -C /data/data/com.termux/files/usr/share/nuru && echo "alias nuru='/data/data/com.termux/files/usr/share/nuru/nuru'" >> ~/.bashrc && source ~/.bashrc && echo "Installation complete.."
117+
curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17/nuru_Android_arm64.tar.gz && mkdir -p /data/data/com.termux/files/usr/share/nuru && tar -xzvf nuru_Android_arm64.tar.gz -C /data/data/com.termux/files/usr/share/nuru && echo "alias nuru='/data/data/com.termux/files/usr/share/nuru/nuru'" >> ~/.bashrc && source ~/.bashrc && echo "Installation complete.."
118118
```
119119

120120

121121
### Windows
122122

123123
- Executable:
124-
- Download the Nuru zip file [Here](https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16/nuru_Windows_amd64.zip)
124+
- Download the Nuru zip file [Here](https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17/nuru_Windows_amd64.zip)
125125
- Unzip to get the executable
126126
- Double click the executable
127127

@@ -176,8 +176,8 @@ Nuru supports both single line and multiple line comments as shown below:
176176
/*
177177
Multiple
178178
Line
179-
Comment
180-
*/
179+
Comment
180+
*/
181181
```
182182

183183
### Arithmetic Operations
@@ -292,7 +292,7 @@ Nuru also supports dictionaries and you can do a lot with them as follows:
292292
```
293293
mtu = {"jina": "Mojo", "kabila": "Mnyakusa"}
294294
295-
// get value from key
295+
// get value from key
296296
andika(mtu["jina"]) // output = Mojo
297297
298298
andika(mtu["kabila"]); // output = Mnyakusa

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var (
1515
Render(`
1616
█░░ █░█ █▀▀ █░█ ▄▀█   █▄█ ▄▀█   █▄░█ █░█ █▀█ █░█
1717
█▄▄ █▄█ █▄█ █▀█ █▀█   ░█░ █▀█   █░▀█ █▄█ █▀▄ █▄█`)
18-
Version = styles.VersionStyle.Render("v0.5.1")
18+
Version = styles.VersionStyle.Render("v0.5.17")
1919
Author = styles.AuthorStyle.Render("by Nuru Org")
2020
NewLogo = lipgloss.JoinVertical(lipgloss.Center, Title, lipgloss.JoinHorizontal(lipgloss.Center, Author, " | ", Version))
2121
Help = styles.HelpStyle.Italic(false).Render(fmt.Sprintf(`💡 Namna ya kutumia Nuru:

0 commit comments

Comments
 (0)