Skip to content

Commit

Permalink
set default auto level for deprecate to minor (#454)
Browse files Browse the repository at this point in the history
* update default deprecate level
  • Loading branch information
miniscruff authored Feb 5, 2023
1 parent 7332931 commit 2b93b1d
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changes/v1.11.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v1.11.1 on 2023-02-05

### Fixed

* [#453](https://github.com/miniscruff/changie/issues/453) Default auto level for deprecation is now minor to match semver
2 changes: 1 addition & 1 deletion .changie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ kinds:
- label: Changed
auto: major
- label: Deprecated
auto: patch
auto: minor
- label: Removed
auto: major
- label: Fixed
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [itself](https://github.com/miniscruff/changie).

## v1.11.1 on 2023-02-05

### Fixed

* [#453](https://github.com/miniscruff/changie/issues/453) Default auto level for deprecation is now minor to match semver

## v1.11.0 on 2023-01-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func runInit(cmd *cobra.Command, args []string) error {
},
{
Label: "Deprecated",
AutoLevel: core.PatchLevel,
AutoLevel: core.MinorLevel,
},
{
Label: "Removed",
Expand Down
2 changes: 1 addition & 1 deletion docs/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ summaryLength = 30
]
enable_anchor_link = true
issues_url = 'https://github.com/miniscruff/changie/issues/new'
version = 'v1.11.0'
version = 'v1.11.1'

[params.homepage_meta_tags]
meta_description = "Changie is a file based changelog management tool."
Expand Down
2 changes: 1 addition & 1 deletion docs/static/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"latest": "v1.11.0"
"latest": "v1.11.1"
}

0 comments on commit 2b93b1d

Please sign in to comment.