v1.0.1
This is a summary of the differences between v1.0.1 and v1.0.0.
Commits
Show commits
| SHA | Author | Committed | Message |
|---|---|---|---|
49352bd |
2017-9-24 | Correct publishDocs script | |
80934cd |
2017-9-24 | remove broken part of script | |
ba5b017 |
2017-9-24 | fixing exec scripts | |
5c628d7 |
2017-9-24 | don't do builds on gh-pages | |
6a7bcb2 |
2017-9-24 | attempting to fix CI config | |
3aa48bf |
2017-9-24 | fix CI badge | |
fb3a7a2 |
2017-9-24 | add redirect to latest docs | |
d27f531 |
2017-9-24 | Merge remote-tracking branch 'origin/master' | |
4937b96 |
2017-9-24 | don't use dev mode when installing own dependencies; remove index.html | |
f1edc5b |
2017-9-24 | fixing publish docs script | |
61e2621 |
2017-9-24 | 1.0.1 |
Changed files
Show changed files
.circleci/config.yml
@@ -48,3 +48,12 @@ jobs:
else
echo "No tag pushed, skipping deploy"
fi
+
+workflows:
+ version: 2
+ build_test_deploy:
+ jobs:
+ - build:
+ filters:
+ branches:
+ ignore: gh-pagesREADME.md
@@ -1,6 +1,6 @@
# autonym
-[](https://circleci.com/gh/mmiller42/autonym) [](https://greenkeeper.io/)
+[](https://circleci.com/gh/mmiller42/autonym/tree/master) [](https://greenkeeper.io/)
A KISS JSON REST API framework that can be mounted to your Express application.
buildTools/devInstall.js
Inline diff not displayed. View the whole file
buildTools/publishDocs.js
Inline diff not displayed. View the whole file
package-lock.json
@@ -1,6 +1,6 @@
{
"name": "autonym",
- "version": "1.0.0",
+ "version": "1.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {package.json
@@ -1,6 +1,6 @@
{
"name": "autonym",
- "version": "1.0.0",
+ "version": "1.0.1",
"description": "A KISS JSON REST API framework that can be mounted to your Express application.",
"keywords": [
"autonym",
@@ -21,7 +21,7 @@
"precommit": "lint-staged",
"prettier": "prettier --write '{{src,buildTools}/**/*.{js,json},*.js,.*rc,.*.json}'",
"postinstall": "node buildTools/devInstall.js",
- "postpublish": "create-github-release --config=buildTools/github-release.config.js $TAG && node buildTools/publishDocs.js",
+ "postpublish": "create-github-release --config=buildTools/github-release.config.js $TAG && node buildTools/publishDocs.js $TAG",
"test": "npm run generate-docs",
"watch": "npm run build -- --watch"
},