Skip to content

v1.0.1

Choose a tag to compare

@mmiller42 mmiller42 released this 24 Sep 04:54
· 75 commits to master since this release

This is a summary of the differences between v1.0.1 and v1.0.0.

Commits

Show commits
SHA Author Committed Message
49352bd mmiller42 2017-9-24 Correct publishDocs script
80934cd mmiller42 2017-9-24 remove broken part of script
ba5b017 mmiller42 2017-9-24 fixing exec scripts
5c628d7 mmiller42 2017-9-24 don't do builds on gh-pages
6a7bcb2 mmiller42 2017-9-24 attempting to fix CI config
3aa48bf mmiller42 2017-9-24 fix CI badge
fb3a7a2 mmiller42 2017-9-24 add redirect to latest docs
d27f531 mmiller42 2017-9-24 Merge remote-tracking branch 'origin/master'
4937b96 mmiller42 2017-9-24 don't use dev mode when installing own dependencies; remove index.html
f1edc5b mmiller42 2017-9-24 fixing publish docs script
61e2621 mmiller42 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-pages

README.md

@@ -1,6 +1,6 @@
 # autonym
 
-[![CircleCI](https://circleci.com/gh/mmiller42/autonym.svg?style=svg)](https://circleci.com/gh/mmiller42/autonym) [![Greenkeeper badge](https://badges.greenkeeper.io/mmiller42/autonym.svg)](https://greenkeeper.io/)
+[![CircleCI](https://circleci.com/gh/mmiller42/autonym/tree/master.svg?style=svg)](https://circleci.com/gh/mmiller42/autonym/tree/master) [![Greenkeeper badge](https://badges.greenkeeper.io/mmiller42/autonym.svg)](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"
   },