Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
nbittich committed Aug 29, 2024
1 parent 2cc39bb commit ac4457f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ My favorite dish 😋
1. Docker
- From the docker hub:
- `docker run -it nbittich/adana # latest from master`
- `docker run -it nbittich/adana:v0.17.11 # latest release`
- `docker run -it nbittich/adana:v0.18.1 # latest release`
- Manually:
- clone the repo
- build the docker image: `docker build -t adana .`
Expand Down Expand Up @@ -174,7 +174,7 @@ ${person.wasup(person.age)}"""
There are 22 operators & 3 constants:

| **operator** | **description** |
|--------------|------------------|
| ------------ | ---------------- |
| `+` | add |
| `-` | subtract |
| `/` | divide |
Expand All @@ -198,12 +198,11 @@ There are 22 operators & 3 constants:
| `==` | equal |
| `()` | parenthesis |


| **constant** | **description** |
|--------------|------------------|
| `π` | PI number |
| `γ` | EULER number |
| `τ` | TAU number |
| **constant** | **description** |
| ------------ | --------------- |
| `π` | PI number |
| `γ` | EULER number |
| `τ` | TAU number |

Example:

Expand Down Expand Up @@ -378,7 +377,7 @@ If it is not installed yet, you will see instructions on how to install it, e.g:
std lib doesn't exist: "/home/nbittich/.local/share/adana/lib/adana-std/fs.so".
Try to install it like so:
- wget -P /tmp https://github.com/nbittich/adana-std/releases/download/0.17.11/adana-std.tar.gz
- wget -P /tmp https://github.com/nbittich/adana-std/releases/download/0.18.1/adana-std.tar.gz
- mkdir /home/nbittich/.local/share/adana/lib/adana-std && tar xvzf /tmp/adana-std.tar.gz \
-C /home/nbittich/.local/share/adana/lib/adana-std
```
Expand Down
2 changes: 1 addition & 1 deletion adana-script/src/require_dynamic_lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#[cfg(not(target_arch = "wasm32"))]
const STD_DOWNLOAD_URI: &str =
"https://github.com/nbittich/adana-std/releases/download/0.17.11/adana-std.tar.gz";
"https://github.com/nbittich/adana-std/releases/download/0.18.1/adana-std.tar.gz";

#[cfg(not(target_arch = "wasm32"))]
use std::process::{Command, Stdio};
Expand Down

0 comments on commit ac4457f

Please sign in to comment.