Skip to content

Commit

Permalink
chore(release): 🔖 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
arctic-hen7 committed Sep 5, 2021
1 parent 498d835 commit d792868
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 6 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.3.2](https://github.com/arctic-hen7/bonnie/compare/v0.3.1...v0.3.2) (2021-09-05)


### Features

* ✨ added debug mode ([8891815](https://github.com/arctic-hen7/bonnie/commit/8891815313cd1a693e2ffecd2f63677528a598c8)), closes [#24](https://github.com/arctic-hen7/bonnie/issues/24)
* ✨ added self-documenting ability ([00417fd](https://github.com/arctic-hen7/bonnie/commit/00417fd782310bf86e40a6759a4d712bce88294c))
* **init:** ✨ allowed creating new config at custom path ([a81345b](https://github.com/arctic-hen7/bonnie/commit/a81345b43e569edb9d7c58eb5aef442221ef63c0))
* ✨ added support for default template ([#21](https://github.com/arctic-hen7/bonnie/issues/21)) ([7c3eec6](https://github.com/arctic-hen7/bonnie/commit/7c3eec6f3ae981bb64ea866bf7ebda2d29e7c956))


### Bug Fixes

* 🐛 fixed a few things from [#21](https://github.com/arctic-hen7/bonnie/issues/21) and cleaned up code ([dd4e273](https://github.com/arctic-hen7/bonnie/commit/dd4e2739fc892413b835d83bc786a36b2cce3562))


### Code Refactorings

* ♻️ removed unnecessary borrows ([f12c60e](https://github.com/arctic-hen7/bonnie/commit/f12c60e9ff85c5cad5d2144bb8ab3d7f10ececac))


### Documentation Changes

* **wiki:** 📝 updated wiki ([c4bd3cb](https://github.com/arctic-hen7/bonnie/commit/c4bd3cb2d873cef4fe1d0f6740eda49f8a820dab))

### [0.3.1](https://github.com/arctic-hen7/bonnie/compare/v0.3.0...v0.3.1) (2021-07-09)


Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
[package]
name = "bonnie"
version = "0.3.1"
version = "0.3.2"
authors = ["arctic_hen7 <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Basically, if you have commands that you routinely run in a project, Bonnie is f
The simplest possible Bonnie configuration file would look like this:

```toml
version = "0.3.1"
version = "0.3.2"

[scripts]
build = "echo Building"
Expand Down
2 changes: 1 addition & 1 deletion src/bonnie.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file defines experimental syntax!

version = "0.3.1"
version = "0.3.2"
env_files = [
".env"
]
Expand Down
2 changes: 1 addition & 1 deletion src/version.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// This file defines the current version of Bonnie
// This MUST be updated before all releases!

pub const BONNIE_VERSION: &str = "0.3.1";
pub const BONNIE_VERSION: &str = "0.3.2";

// The different between two major/minor/patch versions
#[derive(Debug, PartialEq, Eq)]
Expand Down
2 changes: 1 addition & 1 deletion wiki
Submodule wiki updated from d6b7d0 to db5ae6

0 comments on commit d792868

Please sign in to comment.