Skip to content

Commit

Permalink
Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
camchenry committed Mar 15, 2020
1 parent 6c51e5c commit dfcdaef
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOD.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0] - 2020-03-15
### Added
- New build report to show output file name, elapsed time, and total output size.
### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boon"
version = "0.1.1"
version = "0.2.0"
authors = ["Cameron McHenry <[email protected]>"]
edition = "2018"

Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Licensed under the MIT License.
* 11.x
* 0.10.2
* No external dependencies
* Deploy to multiple destinations (coming soon)

# Getting started

Expand All @@ -34,6 +33,8 @@ If you're a **Linux** user, download the `boon-linux-amd64` file.

## Usage

In general, if you need help figuring out how to use a command you can pass the `--help` option to see possible arguments, options, and subcommands. To get started and see the top-level commands and options, run `boon --help`.

### Initialization
To start using boon with your project, it is recommended to first initialize it. This will create a `Boon.toml` file that will let you configure the settings for your project.

Expand Down Expand Up @@ -62,6 +63,8 @@ $ boon build .

Without a target specified, this will build a `.love` file and put it in the `release` directory. This is shorthand for `boon build <dir> --target love`

It is possible to build all targets simultaneously by passing `all` as the target, for example, `boon build . --target all`.

#### Building for Windows

To build a Windows application:
Expand Down Expand Up @@ -96,5 +99,5 @@ git clone [email protected]:camchenry/boon.git
cd boon
cargo build --release
./target/release/boon --version
boon 0.1.0
boon 0.2.0
```

0 comments on commit dfcdaef

Please sign in to comment.