Skip to content

Commit

Permalink
feat(changelog): Improve changelog format
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathon Hill committed Oct 5, 2022
1 parent c23458a commit e15da0e
Show file tree
Hide file tree
Showing 4 changed files with 3,042 additions and 175 deletions.
12 changes: 4 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
# Changelog

## [Unreleased](https://github.com/compwright/axios-oauth-client/tree/HEAD)

[Full Changelog](https://github.com/compwright/axios-oauth-client/compare/v1.5.0...HEAD)

**Merged pull requests:**

- Bump minimist from 1.2.5 to 1.2.6 [\#20](https://github.com/compwright/axios-oauth-client/pull/20) ([dependabot[bot]](https://github.com/apps/dependabot))

## [v1.5.0](https://github.com/compwright/axios-oauth-client/tree/v1.5.0) (2022-05-24)

[Full Changelog](https://github.com/compwright/axios-oauth-client/compare/v1.4.4...v1.5.0)
Expand All @@ -16,6 +8,10 @@

- Typescript Support? [\#13](https://github.com/compwright/axios-oauth-client/issues/13)

**Merged pull requests:**

- Bump minimist from 1.2.5 to 1.2.6 [\#20](https://github.com/compwright/axios-oauth-client/pull/20) ([dependabot[bot]](https://github.com/apps/dependabot))

## [v1.4.4](https://github.com/compwright/axios-oauth-client/tree/v1.4.4) (2021-10-12)

[Full Changelog](https://github.com/compwright/axios-oauth-client/compare/v1.4.3...v1.4.4)
Expand Down
24 changes: 2 additions & 22 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,5 @@ clean:
build: test clean
./node_modules/.bin/unbuild

commit:
git diff --exit-code || git commit -am "Updating build"

changelog:
github_changelog_generator --user compwright --project axios-oauth-client && git add CHANGELOG.md && git commit -am "Updating changelog"
git push origin

release-pre: build
npm version prerelease && npm publish --tag pre
git push origin --tags

release-patch: build
npm version patch && npm publish
git push origin --tags

release-minor: build
npm version minor && npm publish
git push origin --tags

release-major: build
npm version major && npm publish
git push origin --tags
release:
node_modules/.bin/standard-version

0 comments on commit e15da0e

Please sign in to comment.