Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.1.0 #131

Merged
merged 3 commits into from
Nov 15, 2022
Merged

3.1.0 #131

Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.1.0]
### Added
- Allow prerelease versions in release headers ([#130](https://github.com/MetaMask/auto-changelog/pull/130))

### Changed
- Check for `code` property when interpreting filesystem errors ([#124](https://github.com/MetaMask/auto-changelog/pull/124))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if this is worth noting or not.

Copy link
Member

@Gudahtt Gudahtt Nov 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm. I think the only functional difference is that if a primitive type is thrown, we now re-throw it rather than crashing again when trying to check the code property. Otherwise it should be functionally identical. We were checking the code property before, just not verifying that the error was an error before checking.

I'd probably remove it or re-word it to reflect the functional impact it has, but it's not a big deal.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, that's a good point. I was leaning toward removing this; it's kind of hard to explain, and I don't think people are likely to run into this.


## [3.0.0]
### Added
- Support alternate tag prefixes ([#120](https://github.com/MetaMask/auto-changelog/pull/120))
Expand Down Expand Up @@ -90,7 +97,8 @@ Includes the following features:
- Monorepo support ([#41](https://github.com/MetaMask/auto-changelog/pull/41))
- Configurable repository URL, version, and changelog file path ([#33](https://github.com/MetaMask/auto-changelog/pull/33), [#31](https://github.com/MetaMask/auto-changelog/pull/31), [#30](https://github.com/MetaMask/auto-changelog/pull/30))

[Unreleased]: https://github.com/MetaMask/auto-changelog/compare/v3.0.0...HEAD
[Unreleased]: https://github.com/MetaMask/auto-changelog/compare/v3.1.0...HEAD
[3.1.0]: https://github.com/MetaMask/auto-changelog/compare/v3.0.0...v3.1.0
[3.0.0]: https://github.com/MetaMask/auto-changelog/compare/v2.6.1...v3.0.0
[2.6.1]: https://github.com/MetaMask/auto-changelog/compare/v2.6.0...v2.6.1
[2.6.0]: https://github.com/MetaMask/auto-changelog/compare/v2.5.0...v2.6.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/auto-changelog",
"version": "3.0.0",
"version": "3.1.0",
"description": "Utilities for validating and updating \"Keep a Changelog\" formatted changelogs",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
Expand Down