From ef31012f31a830abf95647e0d5f52b4cf824cd1f Mon Sep 17 00:00:00 2001 From: Casey Childers Date: Thu, 19 Jan 2017 18:21:55 -0800 Subject: [PATCH 1/3] bugfix: Correct bad function import --- src/index.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 652ddfa..6deeec6 100644 --- a/src/index.js +++ b/src/index.js @@ -1,11 +1,14 @@ /* @flow */ -import { getNpmData, curriedMerge, pickDownloads } from './utilities'; +import { + getNpmData, + curriedMerge, + pickDownloads, + filterPrivate } from './utilities'; import { readPackageJson, fetchEachDependency, instantiateDependencies, - filterPrivate, addNode } from './helpers'; From 526e6a0ca3d71030a336d239fbda11c09388ea69 Mon Sep 17 00:00:00 2001 From: Casey Childers Date: Thu, 19 Jan 2017 18:26:36 -0800 Subject: [PATCH 2/3] chore(changelog): Add bugfix patch --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 227d8ec..6dcd5e1 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/). +## 0.6.3 - 2017-1-19 +### Changed +- Minor bugfix + ## 0.6.2 - 2017-1-9 ### Changed - Improve URL processing to yield more browser-friendly results From d1681ccfbe613518983fa1e3f0f76f4c5bb81bb2 Mon Sep 17 00:00:00 2001 From: Casey Childers Date: Thu, 19 Jan 2017 18:26:51 -0800 Subject: [PATCH 3/3] 0.6.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f79d82d..71e474a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "backpat", - "version": "0.6.2", + "version": "0.6.3", "description": "A simple tool for high-fiving your tech stack", "main": "dist/index.js", "scripts": {