Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danilopedraza committed Dec 12, 2024
1 parent 0880a4f commit 836851a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@

- Fix bad default path for the standard library.

# Upstream

# 0.3.0

- Add object-like notation for dictionaries. Add criteria for selecting between object function calls and pseudo-OOP calls.
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.2.1/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.3.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.2.1/komodo
wget https://github.com/danilopedraza/komodo/releases/download/v0.3.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.2.1"
version = "0.3.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.2.1"
version = "0.3.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.2.1/komodo
wget https://github.com/danilopedraza/komodo/releases/download/v0.3.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.2.1/$module.komodo
wget https://github.com/danilopedraza/komodo/releases/download/v0.3.0/$module.komodo
sudo mv $module.komodo /usr/local/lib/komodo/$module.komodo
done

Expand Down

0 comments on commit 836851a

Please sign in to comment.