Skip to content

Commit

Permalink
2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Sep 20, 2019
1 parent 4336c05 commit 126f51e
Show file tree
Hide file tree
Showing 3 changed files with 431 additions and 64 deletions.
60 changes: 38 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,54 +1,70 @@
# 1.3.2 - 2018-06-07
# `github-release-from-changelog` Changelog

* [Upgrade of grizzly to prevent security issue](https://github.com/MoOx/github-release-from-changelog/commit/9634bf8e1fa9ce9f693277bfed24bb83ead5a9e8) by @ntwb
## 2.0.0 - 2019-09-20

# 1.3.1 - 2018-01-22
🥳 Less contraints!

* [Fix "Keep A Changelog" version detection](https://github.com/MoOx/github-release-from-changelog/commit/b96ea68110ee580abd31fbcc028c92091c03682d)
Now we support multiples version format like

- `# X.Y.Z`
- `## X.Y.Z`
- `## vX.Y.Z`
- `## [vX.Y.Z`
- `## [X.Y.Z`

(This means no more code specific to https://keepachangelog.com & more flexibility)

## 1.3.2 - 2018-06-07

- [Upgrade of grizzly to prevent security issue](https://github.com/MoOx/github-release-from-changelog/commit/9634bf8e1fa9ce9f693277bfed24bb83ead5a9e8) by @ntwb

## 1.3.1 - 2018-01-22

- [Fix "Keep A Changelog" version detection](https://github.com/MoOx/github-release-from-changelog/commit/b96ea68110ee580abd31fbcc028c92091c03682d)
by @igetgames

# 1.3.0 - 2017-12-06
## 1.3.0 - 2017-12-06

* [Add support for auto-determing different CHANGELOG filenames](https://github.com/MoOx/github-release-from-changelog/commit/eb8f20855810201561144ca3762168d1da421d12),
- [Add support for auto-determing different CHANGELOG filenames](https://github.com/MoOx/github-release-from-changelog/commit/eb8f20855810201561144ca3762168d1da421d12),
by @koppor, reported by @MoOx (in [#6](https://github.com/MoOx/github-release-from-changelog/issues/6))
* [Add support for format of "Keep a Changelog"](https://github.com/MoOx/github-release-from-changelog/commit/cf50e4e8f0829c36eb837974e189d733fdb0effd),
- [Add support for format of "Keep a Changelog"](https://github.com/MoOx/github-release-from-changelog/commit/cf50e4e8f0829c36eb837974e189d733fdb0effd),
by @koppor

# 1.2.1 - 2016-06-28
## 1.2.1 - 2016-06-28

* Fixed: `Empty value for parameter 'tag_name': undefined`
- Fixed: `Empty value for parameter 'tag_name': undefined`

# 1.2.0 - 2016-06-28
## 1.2.0 - 2016-06-28

* Changed: use `grizzly` v2.x
- Changed: use `grizzly` v2.x
(ref [node-grizzly#1](https://github.com/coderaiser/node-grizzly/issues/1))

# 1.1.4 - 2016-06-07
## 1.1.4 - 2016-06-07

* Fixed: `TypeError: Cannot read property 'createRelease' of undefined`
- Fixed: `TypeError: Cannot read property 'createRelease' of undefined`
by fixing `grizzly` version.
([#12](https://github.com/MoOx/npmpub/issues/12))

# 1.1.3 - 2016-02-12
## 1.1.3 - 2016-02-12

* Fixed: `chmod +x ./github-release-from-changelog.js`
- Fixed: `chmod +x ./github-release-from-changelog.js`

# 1.1.2 - 2016-02-12
## 1.1.2 - 2016-02-12

* Fixed: tag starting with "v" are now compatible.
- Fixed: tag starting with "v" are now compatible.
([#9](https://github.com/MoOx/github-release-from-changelog/pull/9))

# 1.1.1 - 2016-01-06
## 1.1.1 - 2016-01-06

* Fixed: blank line are not stripped for block anymore (which can break
- Fixed: blank line are not stripped for block anymore (which can break
markdown rendering - eg: title using `##` )
([#7](https://github.com/MoOx/github-release-from-changelog/pull/7))

# 1.1.0 - 2015-11-10
## 1.1.0 - 2015-11-10

* Added: `--filename` option to specify your own filename
- Added: `--filename` option to specify your own filename
(if you don't use `CHANGELOG.md`).

# 1.0.0 - 2015-10-04
## 1.0.0 - 2015-10-04

✨ Initial release
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-release-from-changelog",
"version": "1.3.2",
"version": "2.0.0",
"description": "Create GitHub releases from CHANGELOG.md",
"keywords": [
"cli-app",
Expand All @@ -26,15 +26,15 @@
"minimist": "^1.2.0"
},
"devDependencies": {
"husky": "^0.14.3",
"npmpub": "^3.0.1",
"prettier": "^1.9.1",
"pretty-quick": "^1.6.0"
"husky": "^3.0.5",
"npmpub": "^4.1.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
},
"scripts": {
"precommit": "pretty-quick --staged",
"test": "./github-release-from-changelog.js --dryRun",
"release": "npmpub --no-release",
"release": "npmpub --no-release --skip-test",
"postrelease": "./github-release-from-changelog.js"
}
}
Loading

0 comments on commit 126f51e

Please sign in to comment.