Skip to content

Commit 6a81239

Browse files
chore(main): release 3.2.1 (#450)
1 parent f8799d0 commit 6a81239

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.2.0"
2+
".": "3.2.1"
33
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [3.2.1](https://github.com/editorconfig-checker/editorconfig-checker/compare/v3.2.0...v3.2.1) (2025-03-15)
4+
5+
6+
### Bug Fixes
7+
8+
* check for exclusion before MIME type ([#447](https://github.com/editorconfig-checker/editorconfig-checker/issues/447)) ([cd9976b](https://github.com/editorconfig-checker/editorconfig-checker/commit/cd9976ba25738a02a2130a7fc5e729ed9d6b7251))
9+
* empty format in the config file should be treated as Default ([#448](https://github.com/editorconfig-checker/editorconfig-checker/issues/448)) ([f8799d0](https://github.com/editorconfig-checker/editorconfig-checker/commit/f8799d0915e6c7a3c82941c14b5bafcf472283cf)), closes [#430](https://github.com/editorconfig-checker/editorconfig-checker/issues/430)
10+
* **test:** make TestGetRelativePath work under Darwin ([#445](https://github.com/editorconfig-checker/editorconfig-checker/issues/445)) ([d956561](https://github.com/editorconfig-checker/editorconfig-checker/commit/d95656138c991c47847015902c75f46aeccb8d06))
11+
* **test:** support running our test suite under `-trimpath`, closes [#397](https://github.com/editorconfig-checker/editorconfig-checker/issues/397) ([#439](https://github.com/editorconfig-checker/editorconfig-checker/issues/439)) ([fc78406](https://github.com/editorconfig-checker/editorconfig-checker/commit/fc78406ae4d64dc63256c5b37db61b770bf5e436))
12+
* **test:** we no longer need -ldflags at all ([#444](https://github.com/editorconfig-checker/editorconfig-checker/issues/444)) ([9ffcae2](https://github.com/editorconfig-checker/editorconfig-checker/commit/9ffcae2b7d984c6bf48fde83aaf55ab8962a927a))
13+
314
## [3.2.0](https://github.com/editorconfig-checker/editorconfig-checker/compare/v3.1.2...v3.2.0) (2025-01-25)
415

516

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Unsupported features are:
5757

5858
<!-- x-release-please-start-version -->
5959
```shell
60-
VERSION="v3.2.0"
60+
VERSION="v3.2.1"
6161
OS="linux"
6262
ARCH="amd64"
6363
curl -O -L -C - https://github.com/editorconfig-checker/editorconfig-checker/releases/download/$VERSION/ec-$OS-$ARCH.tar.gz && \

cmd/editorconfig-checker/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
// version is used for the help and to verify against the version stored in the config file
2323
// version is dynamically set at compiletime
24-
var version string = "v3.2.0" // x-release-please-version
24+
var version string = "v3.2.1" // x-release-please-version
2525

2626
// defaultConfigFileNames determines the file names where the config is located
2727
var defaultConfigFileNames = []string{".editorconfig-checker.json", ".ecrc"}

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
with pkgs;
33

44
buildGoPackage rec {
5-
version = "v3.2.0" # x-release-please-version
5+
version = "v3.2.1" # x-release-please-version
66

77
# create link so the tool can also be executed as `ec`
88
postInstall = ''

pkg/config/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ func TestMerge(t *testing.T) {
113113

114114
mergeConfig := Config{
115115
ShowVersion: true,
116-
Version: "v3.2.0", // x-release-please-version
116+
Version: "v3.2.1", // x-release-please-version
117117
Help: true,
118118
DryRun: true,
119119
Path: "some-other",

0 commit comments

Comments
 (0)