Skip to content

Commit

Permalink
bump v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgoebel committed Aug 26, 2021
1 parent 920e963 commit de18437
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# <img src="https://wren.io/wren.svg" valign="middle" width="100"> wren-testie

![MIT licensed](https://badgen.net/badge/license/MIT/cyan?scale=1.5)
![version 0.1](https://badgen.net/badge/version/0.1.0/green?scale=1.5)
![version 0.2](https://badgen.net/badge/version/0.2.0/green?scale=1.5)
![wren 0.4](https://badgen.net/badge/wren/0.4/blue?scale=1.5)

Simple and beautiful testing framework for [Wren](https://wren.io).
Expand Down
13 changes: 13 additions & 0 deletions package.wren
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import "wren-package" for WrenPackage, Dependency
import "os" for Process

class Package is WrenPackage {
construct new() {}
name { "wren-testie" }
version { "0.2.0" }
dependencies {
return []
}
}

Package.new().default()

0 comments on commit de18437

Please sign in to comment.