Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reu-dev committed Mar 11, 2024
1 parent f67e72f commit 5879d4c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = [".", "razel-bench", "razel-self-test"]

[workspace.package]
version = "0.2.3"
version = "0.3.0"
edition = "2021"
rust-version = "1.59"
homepage = "https://github.com/reu-dev/razel"
Expand Down
2 changes: 1 addition & 1 deletion apis/deno/razel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {assert, assertEquals} from 'https://deno.land/std@0.135.0/testing/assert
import * as path from 'https://deno.land/std@0.135.0/path/mod.ts';

export class Razel {
static version = "0.2.3";
static version = "0.3.0";
private static _instance: Razel;
razelFile: string;
private commands: Command[] = [];
Expand Down
2 changes: 1 addition & 1 deletion apis/python/razel.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


class Razel:
version: ClassVar[str] = "0.2.3"
version: ClassVar[str] = "0.3.0"
_instance: ClassVar[Optional[Razel]] = None

class Tag(str, Enum):
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"imports": {
"https://deno.land/x/razel@v0.2.3/": "./apis/deno/"
"https://deno.land/x/razel@v0.3.0/": "./apis/deno/"
},
"lock": false
}
2 changes: 1 addition & 1 deletion examples/deno.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as path from 'https://deno.land/std@0.135.0/path/mod.ts';
import {Razel} from 'https://deno.land/x/razel@v0.2.3/razel.ts';
import {Razel} from 'https://deno.land/x/razel@v0.3.0/razel.ts';

const workspaceDir = path.resolve(path.dirname(path.fromFileUrl(import.meta.url)));
const razel = Razel.init(workspaceDir);
Expand Down

0 comments on commit 5879d4c

Please sign in to comment.