Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyalIcing committed Nov 6, 2023
1 parent d7d311d commit 54bfd28
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

# Orb: Write WebAssembly with Elixir

Orb is a DSL for WebAssembly with the full power of the Elixir language at compile time:
Orb lets you write WebAssembly with the power of Elixir as a compiler:

- Use Elixir’s module system to break problems down and compose them together
- `|>` Function piping
- Break problems into smaller modules and compose them together
- Macros
- Powerful macros
- Inline code and for-comprehensions
- Compile on-the-fly, and run dynamic code at compile time e.g. feature flags, talk to outside services
- Publish via the Hex package manager
- Run dynamic Elixir code at compile time e.g. feature flags, talk to outside services
- Compile on-the-fly e.g. custom WebAssembly module per user
- Publish reusable code with the Hex package manager

## Installation

Expand All @@ -18,7 +19,7 @@ The package can be installed via Hex by adding `orb` to your list of dependencie
```elixir
def deps do
[
{:orb, "~> 0.0.22"}
{:orb, "~> 0.0.23"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule Orb.MixProject do
def project do
[
app: :orb,
version: "0.0.22",
version: "0.0.23",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down

0 comments on commit 54bfd28

Please sign in to comment.