Skip to content

Commit

Permalink
Bump to version: v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nknapp committed Dec 17, 2016
1 parent da21e7c commit a656929
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Release notes

<a name="current-release"></a>
# Version 0.9.0 (Sat, 17 Dec 2016 21:59:21 GMT)

* [e61426b](https://github.com/bootprint/bootprint/commit/e61426b) Better error message when source file cannot be found - Nils Knappmeier
* [9d9c0f8](https://github.com/bootprint/bootprint/commit/9d9c0f8) Better error-message and tests for invalid number of cli-arguments - Nils Knappmeier
* [c273633](https://github.com/bootprint/bootprint/commit/c273633) Fix check for correct number of command-line arguments - Nils Knappmeier
* [0290846](https://github.com/bootprint/bootprint/commit/0290846) fixes YAMLException that occurs on some openapi yaml - Kit Plummer

# Version 0.8.5 (Tue, 15 Mar 2016 14:18:06 GMT)

* [5ec577c](https://github.com/bootprint/bootprint/commit/5ec577c) Bootprint logo is now at bootprint.github.io - Nils Knappmeier
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# bootprint

[![NPM version](https://badge.fury.io/js/bootprint.svg)](http://badge.fury.io/js/bootprint)
[![Travis Build Status](https://travis-ci.org/bootprint/bootprint.svg?branch=master)](https://travis-ci.org/bootprint/bootprint)
[![Coverage Status](https://img.shields.io/coveralls/bootprint/bootprint.svg)](https://coveralls.io/r/bootprint/bootprint)
[![Travis Build Status](https://travis-ci.org/bootprint/bootprint.svg?branch=master)](https://travis-ci.org/bootprint/bootprint)
[![Coverage Status](https://img.shields.io/coveralls/bootprint/bootprint.svg)](https://coveralls.io/r/bootprint/bootprint)


> Converts json and yaml into a static html page using Handlebars and Bootstrap
Expand Down
10 changes: 5 additions & 5 deletions doc/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ In this configuration the engines [customize-engine-handlebars](https://npmjs.co

### Customize methods

The following [methods from the `Customize`-module()](https://github.com/nknapp/customize/blob/v0.7.0/README.md#customizecustomize) can be used:
The following [methods from the `Customize`-module()](https://github.com/bootprint/customize/blob/v0.8.4/README.md#customizecustomize) can be used:

#### [.merge(configuration:object): Customize](https://github.com/nknapp/customize/blob/v0.7.0/README.md#module_customize..Customize+merge)
#### [.merge(configuration:object): Customize](https://github.com/bootprint/customize/blob/v0.8.4/README.md#module_customize..Customize+merge)


This method returns a new Customize instance, merging another configuration with the current one.
The merging rules of Customize apply. The configuration object must match [this JSON-schema](doc/configuration-schema.json)

#### [.load(configurationModule:function(customize:Customize):Customize):Customize](https://github.com/nknapp/customize/blob/v0.7.0/README.md#customizeloadcustomizemodule--customize)
#### [.load(configurationModule:function(customize:Customize):Customize):Customize](https://github.com/bootprint/customize/blob/v0.8.4/README.md#customizeloadcustomizemodule--customize)


This method loads a configuration module (such as [bootprint-swagger](https://npmjs.com/package/bootprint-swagger) or [bootprint-json-schema](https://npmjs.com/package/bootprint-json-schema).
Expand All @@ -29,14 +29,14 @@ merging configurations and by loading one or multiple other configuration module
loads `bootprint-json-schema' which in turn loads `bootprint-base`. Each of the three modules merge their
custom configurations after loading their parent modules.

#### [.buildConfig(): Promise&lt;object>](https://github.com/nknapp/customize/blob/v0.7.0/README.md#customizebuildconfig--promiseobject)
#### [.buildConfig(): Promise&lt;object>](https://github.com/bootprint/customize/blob/v0.8.4/README.md#customizebuildconfig--promiseobject)


This method can be called in order to inspect intermediate configuration results for documentation or testing purposes.
The returned object is the merge-result of configurations. However, not the input of the `.merge` function is merged,
but an internal representation that consists of watch-files and the configuration after proprocessing by the engines.

#### [.run(options:object): Promise&lt;object>](https://github.com/nknapp/customize/blob/v0.7.0/README.md#customizerunoptions--promiseobject)
#### [.run(options:object): Promise&lt;object>](https://github.com/bootprint/customize/blob/v0.8.4/README.md#customizerunoptions--promiseobject)


This method invokes one or all engines of the configuration Customize engine. In Bootprint, unless the `.registerEngine()`
Expand Down
4 changes: 0 additions & 4 deletions doc/js.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@ Consider th following file-hierarchy:
├─┬ partials
│ ├── body.html.hbs
│ └── footer.html.hbs
├─┬ target
│ ├── index.html
│ ├── main.css
│ └── main.css.map
└─┬ templates
└── index.html.hbs
</code></pre>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootprint",
"version": "0.8.5",
"version": "0.9.0",
"description": "Converts json and yaml into a static html page using Handlebars and Bootstrap",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit a656929

Please sign in to comment.