commit f2e9aea8e005a11632a493a25f7ea9fce9319785
parent 6f083df78bec1ae3d185818813b4ca29b72cad58
Author: Gavin Rehkemper <gavin@gavinr.com>
Date: Wed, 19 Jul 2017 13:25:29 -0500
releasing v0.2.0
Diffstat:
4 files changed, 17 insertions(+), 10 deletions(-)
diff --git a/3.0.0 b/3.0.0
@@ -1,7 +0,0 @@
-+ eslint@4.2.0
-+ eslint-plugin-standard@3.0.1
-+ eslint-plugin-promise@3.5.0
-+ eslint-plugin-node@5.1.1
-+ eslint-config-standard@10.2.1
-+ eslint-plugin-import@2.7.0
-added 39 packages and updated 1 package in 7.387s
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -4,9 +4,23 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [0.2.0] - 2017-07-19
+### Added
+- Support for Hosted Github (See `--github_enterprise` commandline switch)
+- Ability to create issues that are already closed (`state` csv column)
+- Assignee (`assignee` csv column)
+- "Bottleneck" to limit frequency of requests to the GitHub API.
+- Milestone support (`milestone` csv column)
+
+
+### Thanks
+- @kwhite for Bottleneck and milestone features
+- @ojacques for Hosted Github, state, and assignee features
+
## 0.1.0 - 2016-07-04
### Added
- Basic CSV import functionality.
- A few basic tests
-[Unreleased]: https://github.com/gavinr/github-csv-tools/compare/v0.1.0...HEAD
+[Unreleased]: https://github.com/gavinr/github-csv-tools/compare/v0.2.0...HEAD
+[0.2.0]: https://github.com/gavinr/github-csv-tools/compare/v0.1.0...0.2.0
diff --git a/index.js b/index.js
@@ -10,7 +10,7 @@ const fs = require('fs')
const Bottleneck = require('bottleneck')
program
- .version('0.1.0')
+ .version('0.2.0')
.arguments('<file>')
.option('--github_enterprise [github.my-company.com]', 'Your GitHub Enterprise URL.')
.option('--token [token]', 'The GitHub token. https://github.com/settings/tokens')
diff --git a/package.json b/package.json
@@ -1,6 +1,6 @@
{
"name": "github-csv-tools",
- "version": "0.1.0",
+ "version": "0.2.0",
"description": "Tools to import and export, via CSV, from GitHub.",
"main": "index.js",
"scripts": {