Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danilopedraza committed Feb 17, 2025
1 parent 1d88a20 commit 8956038
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

- Add object-like notation for dictionaries. Add criteria for selecting between object function calls and pseudo-OOP calls.

# Upstream
# 0.4.0

- Enable mutability inside loops.

Expand Down Expand Up @@ -53,3 +53,5 @@
- The `time` module was added, with the `time` and `sleep` functions.

- Fix bug where non-empty sets were being matched to the `{}` expression.

# Upstream
4 changes: 2 additions & 2 deletions book/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Currently, you can install Komodo downloading binaries or building from source.

## Download binaries

There are pre-compiled binaries for x86-64 Linux [here](https://github.com/danilopedraza/komodo/releases/download/v0.3.0/komodo). If this is not your architecture, you will have to build from source.
There are pre-compiled binaries for x86-64 Linux [here](https://github.com/danilopedraza/komodo/releases/download/v0.4.0/komodo). If this is not your architecture, you will have to build from source.

You can use this to install Komodo for all users (requires root access):

Expand All @@ -15,7 +15,7 @@ curl --proto '=https' --tlsv1.2 -sSf https://komodo-lang.org/install.sh | sh
You can also install Komodo (only for your user) with these commands:

```
wget https://github.com/danilopedraza/komodo/releases/download/v0.3.0/komodo
wget https://github.com/danilopedraza/komodo/releases/download/v0.4.0/komodo
chmod +x komodo
mv komodo $HOME/.local/bin
```
Expand Down
2 changes: 1 addition & 1 deletion core-browser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "komodo-browser"
version = "0.3.0"
version = "0.4.0"
authors = ["Danilo Pedraza <[email protected]>"]
edition = "2021"
resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "komodo"
version = "0.3.0"
version = "0.4.0"
edition = "2021"

[features]
Expand Down
4 changes: 2 additions & 2 deletions installer/linux/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
echo "Installing Komodo... (this will require root access)"

cd /tmp
wget https://github.com/danilopedraza/komodo/releases/download/v0.3.0/komodo
wget https://github.com/danilopedraza/komodo/releases/download/v0.4.0/komodo
sudo chmod +x komodo
sudo mv komodo /usr/local/bin/komodo

Expand All @@ -13,7 +13,7 @@ sudo mkdir -p /usr/local/lib/komodo

for module in utils
do
wget https://github.com/danilopedraza/komodo/releases/download/v0.3.0/$module.komodo
wget https://github.com/danilopedraza/komodo/releases/download/v0.4.0/$module.komodo
sudo mv $module.komodo /usr/local/lib/komodo/$module.komodo
done

Expand Down

0 comments on commit 8956038

Please sign in to comment.