damus-github-export

Damus issue data exported from github
git clone git://jb55.com/damus-github-export
Log | Files | Refs | README | LICENSE

commit 00b152dcea447d5932b9666e7b235f76621a62e4
parent 248741188559148f0ca35cb3417586969e8509ad
Author: Gavin Rehkemper <gavin@gavinr.com>
Date:   Sun,  3 May 2020 22:41:53 -0500

ver 1.0.3

Diffstat:
MCHANGELOG.md | 9++++++++-
Mindex.js | 2+-
Mpackage.json | 2+-
3 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -4,6 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [1.0.3] - 2020-05-03 + +## Changed + +- Fixed month number in export ([#16](https://github.com/gavinr/github-csv-tools/pull/16)) + ## [1.0.2] - 2020-04-28 ## Added @@ -56,7 +62,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Basic CSV import functionality. - A few basic tests -[Unreleased]: https://github.com/gavinr/github-csv-tools/compare/v1.0.2...HEAD +[Unreleased]: https://github.com/gavinr/github-csv-tools/compare/v1.0.3...HEAD +[1.0.3]: https://github.com/gavinr/github-csv-tools/compare/v1.0.2...v1.0.3 [1.0.2]: https://github.com/gavinr/github-csv-tools/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/gavinr/github-csv-tools/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/gavinr/github-csv-tools/compare/v0.4.0...v1.0.0 diff --git a/index.js b/index.js @@ -11,7 +11,7 @@ const { importFile } = require("./import.js"); const { exportIssues } = require("./export.js"); program - .version("1.0.2") + .version("1.0.3") .arguments("[file]") .option( "-g, --github_enterprise [https://api.github.my-company.com]", diff --git a/package.json b/package.json @@ -1,6 +1,6 @@ { "name": "github-csv-tools", - "version": "1.0.2", + "version": "1.0.3", "description": "Tools to import and export, via CSV, from GitHub.", "main": "index.js", "scripts": {