aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2017-08-28 21:49:35 -0500
committerBen Beltran <ben@nsovocal.com>2017-08-28 21:49:35 -0500
commit476dd67eeeb4786598fc1d07507ba1dfeb6f132c (patch)
treec1722f2c03e50c858f59f8cc0b63602a89cc33de
parenta528f2722d6da159bf8b377c10f7a76ba12e6c42 (diff)
Fix exec, update docs
-rw-r--r--CHANGELOG.md5
-rwxr-xr-x[-rw-r--r--]bin/sorting_hat.js2
-rw-r--r--package.json2
3 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6450590..b90a0ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
+## [1.0.1] - 2017-08-28
+### Changed
+- Fix executable
+
## 1.0.0 - 2017-08-28
### Added
- JSDoc gerneration
@@ -15,3 +19,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- A Readme
[Unreleased]: https://github.com/rbdr/sorting-hat/compare/master...develop
+[1.0.1]: https://github.com/rbdr/sorting-hat/compare/1.0.0...1.0.1
diff --git a/bin/sorting_hat.js b/bin/sorting_hat.js
index bcd1225..8430c61 100644..100755
--- a/bin/sorting_hat.js
+++ b/bin/sorting_hat.js
@@ -1,3 +1,5 @@
+#!/usr/bin/env node
+
'use strict';
const Config = require('../config/config');
diff --git a/package.json b/package.json
index 0ae7bcc..df3bd28 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "sorting-hat",
- "version": "1.0.0",
+ "version": "1.0.1",
"description": "A mindwave powered sorting hat",
"scripts": {
"document": "jsdoc2md -f 'lib/**/*.js' > doc/README.md",