Skip to content

Commit 129be9f

Browse files
committed
docs(README): version bump to 0.5.0
1 parent f593b5f commit 129be9f

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

CHANGELOG.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<a name=""></a>
22

3-
## Bashdoc (2018-12-23)
3+
## Bashdoc (2018-12-25)
44

5-
#### Breaking Changes
5+
#### Performance
66

7-
- **cli.yml:** Can provide a custom template for html documentation ([05936821](https://github.com/dustinknopoff/bashdoc/commit/059368217d8f155662a1ee3e156d0e0e373c2c03), breaks [#](https://github.com/dustinknopoff/bashdoc/issues/))
7+
- **generate_doc_file:** Parallelize Doc generation ([984e546e](https://github.com/dustinknopoff/bashdoc/commit/984e546e19aed5aec4ad91d6cf4b506b03c31d42))
88

99
#### Bug Fixes
1010

@@ -41,10 +41,6 @@
4141
- **screenshot:** ([87d31b24](https://github.com/dustinknopoff/bashdoc/commit/87d31b2469614f92ca1a42fa81d08d590692a610))
4242
- **static:** remove unnecessary CSS files ([38b6f064](https://github.com/dustinknopoff/bashdoc/commit/38b6f06476e8ecaba05c497cda3022bec6fa8d5d))
4343

44-
#### Performance
45-
46-
- **generate_doc_file:** Parallelize Doc generation ([984e546e](https://github.com/dustinknopoff/bashdoc/commit/984e546e19aed5aec4ad91d6cf4b506b03c31d42))
47-
4844
#### Features
4945

5046
- **Delimiters:** override global .bashdocrc within a directory ([45517f6d](https://github.com/dustinknopoff/bashdoc/commit/45517f6d7b2be21d3510c4c008cc63ea99653c12))
@@ -58,3 +54,7 @@
5854
- **script.js:**
5955
- Highlight clicked on function ([5bab275c](https://github.com/dustinknopoff/bashdoc/commit/5bab275cf8fb291934122d7bc9520733530a775b))
6056
- Highlight clicked on function ([b8d25409](https://github.com/dustinknopoff/bashdoc/commit/b8d25409d328ad1d282ba45c58b3a19f0630166b))
57+
58+
#### Breaking Changes
59+
60+
- **cli.yml:** Can provide a custom template for html documentation ([05936821](https://github.com/dustinknopoff/bashdoc/commit/059368217d8f155662a1ee3e156d0e0e373c2c03), breaks [#](https://github.com/dustinknopoff/bashdoc/issues/))

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bashdoc"
3-
version = "0.4.12"
3+
version = "0.5.0"
44
authors = ["Dustin Knopoff <[email protected]>"]
55
description = """
66
A tool for generating documentation/help menu for user defined bash functions.
@@ -13,7 +13,7 @@ readme = "README.md"
1313
keywords = ["bash", "docs", "documentation"]
1414
categories = ["command-line-utilities", "text-processing"]
1515
license = "MIT"
16-
exclude = ["example/**", ".idea/**", "backdocrc.toml"]
16+
exclude = ["example/**", ".idea/**", "backdocrc.toml", ".clog.toml"]
1717

1818
[badges]
1919
maintenance = { status = "experimental" }

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -108,5 +108,6 @@ See the [changelog](https://github.com/dustinknopoff/bashdoc/blob/master/CHANGEL
108108
- v0.4.10 - Support for windows file paths again
109109
- v0.4.11 - support for overriding global `.bashdocrc` within a directory.
110110
- v0.4.12 - descriptors can be split on ':' or whitespace
111+
- v0.5.0 - refactor for improved error handling/rust-ic code
111112

112113
License: MIT

cli.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
about: 'Creates a "javadoc" like structure for bash. See github repo github.com/dustinknopoff/bashdoc for information on formatting.'
22
name: bashdoc
3-
version: "0.4.12"
3+
version: "0.5.0"
44
args:
55
- color:
66
help: "toggles color"

src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
//!- v0.4.10 - Support for windows file paths again
107107
//! - v0.4.11 - support for overriding global `.bashdocrc` within a directory.
108108
//! - v0.4.12 - descriptors can be split on ':' or whitespace
109+
//! - v0.5.0 - refactor for improved error handling/rust-ic code
109110
mod docs;
110111
use crate::docs::runners::*;
111112
use clap::{load_yaml, App};

0 commit comments

Comments
 (0)