Skip to content

Commit

Permalink
Release 1.2.1 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulshryock authored Apr 5, 2021
1 parent 8fff660 commit 2d551ce
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/paulshryock/release-bump/compare/HEAD..1.2.0)
## [Unreleased](https://github.com/paulshryock/release-bump/compare/HEAD..1.2.1)

### Added

Expand All @@ -18,7 +18,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [1.2.0](https://github.com/paulshryock/release-bump/releases/tags/v1.2.0) - 4/5/2021
## [1.2.1](https://github.com/paulshryock/release-bump/releases/tag/v1.2.1) - 4/5/2021

### Fixed
- Fix release tags typo. [#12]

## [1.2.0](https://github.com/paulshryock/release-bump/releases/tag/v1.2.0) - 4/5/2021

### Added
- Get package version from CLI. [#7]
Expand All @@ -28,12 +33,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Better logging.
- Cancel Changelog bump if file does not exist.

## [1.1.0](https://github.com/paulshryock/release-bump/releases/tags/v1.1.0) - 4/2/2021
## [1.1.0](https://github.com/paulshryock/release-bump/releases/tag/v1.1.0) - 4/2/2021

### Added
- Add CLI flag configuration. [#4]

## [1.0.0](https://github.com/paulshryock/release-bump/releases/tags/v1.0.0) - 3/30/2021
## [1.0.0](https://github.com/paulshryock/release-bump/releases/tag/v1.0.0) - 3/30/2021

### Added
- Bump Changelog.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "release-bump",
"version": "1.2.0",
"version": "1.2.1",
"description": "Release Bump handles version bump tasks for a code release.",
"keywords": [
"release",
Expand Down
2 changes: 1 addition & 1 deletion src/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ module.exports = class Changelog {
*/
bump () {
this.header = `## [${this.version}](${this.repository}/` +
`${this.gitRemote === 'bitbucket' ? 'commits/tag' : 'releases/tags'}/` +
`${this.gitRemote === 'bitbucket' ? 'commits/tag' : 'releases/tag'}/` +
`${this.skipV ? '' : 'v'}${this.version}) - ${this.today}`

console.info('Bumping Changelog to:', this.version)
Expand Down

0 comments on commit 2d551ce

Please sign in to comment.