Skip to content

Commit bfcef7f

Browse files
committed
feat: update semver library to v3.4.0
1 parent 5d4bf62 commit bfcef7f

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

CHANGELOG.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,34 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
<!-- insertion marker -->
99
## Unreleased
1010

11-
<small>[Compare with latest](https://github.com/pmoscode/helm-chart-update-check/compare/v0.1.2...HEAD)</small>
11+
<small>[Compare with latest](https://github.com/pmoscode/helm-chart-update-check/compare/v0.2.0...HEAD)</small>
1212

13-
### Bug Fixes
13+
### Features
1414

15-
- increase patch version to get correct check ([cb55865](https://github.com/pmoscode/helm-chart-update-check/commit/cb558657a5d805584fabf3f9081acca43ce86794) by Peter Motzko).
15+
- update semver library to v3.4.0 ([a6f5f09](https://github.com/pmoscode/helm-chart-update-check/commit/a6f5f0949b260c17a7bc1966ceebca4870b37c1c) by Peter Motzko).
1616

1717
<!-- insertion marker -->
18+
## [v0.2.0](https://github.com/pmoscode/helm-chart-update-check/releases/tag/v0.2.0) - 2024-11-17
19+
20+
<small>[Compare with v0.1.3](https://github.com/pmoscode/helm-chart-update-check/compare/v0.1.3...v0.2.0)</small>
21+
22+
### Features
23+
24+
- add "exclude-versions" flag and do small code refactor ([7a66347](https://github.com/pmoscode/helm-chart-update-check/commit/7a66347b308355a7021dcad1a21493fa18e0adc7) by Peter Motzko).
25+
- add dependency version update ([ca97c70](https://github.com/pmoscode/helm-chart-update-check/commit/ca97c70c13f94524408a664a6d0a8dcf5da5f662) by Peter Motzko).
26+
27+
### Bug Fixes
28+
29+
- update module github.com/masterminds/semver/v3 to v3.3.0 ([7cafed9](https://github.com/pmoscode/helm-chart-update-check/commit/7cafed92010a43b099d6ada8817e00eb35f4e596) by renovate[bot]).
30+
31+
## [v0.1.3](https://github.com/pmoscode/helm-chart-update-check/releases/tag/v0.1.3) - 2023-12-11
32+
33+
<small>[Compare with v0.1.2](https://github.com/pmoscode/helm-chart-update-check/compare/v0.1.2...v0.1.3)</small>
34+
35+
### Bug Fixes
36+
37+
- increase patch version to get correct check ([69f9912](https://github.com/pmoscode/helm-chart-update-check/commit/69f9912be734f546d6ca4cfb9438c5ba98ff7723) by Peter Motzko).
38+
1839
## [v0.1.2](https://github.com/pmoscode/helm-chart-update-check/releases/tag/v0.1.2) - 2023-12-11
1940

2041
<small>[Compare with v0.1.1](https://github.com/pmoscode/helm-chart-update-check/compare/v0.1.1...v0.1.2)</small>

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/pmoscode/helm-chart-update-check
33
go 1.24.4 // Update GH Action aswell
44

55
require (
6-
github.com/Masterminds/semver/v3 v3.3.1
6+
github.com/Masterminds/semver/v3 v3.4.0
77
github.com/pmoscode/go-common v0.10.0
88
gopkg.in/yaml.v3 v3.0.1
99
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ github.com/Masterminds/semver/v3 v3.3.0 h1:B8LGeaivUe71a5qox1ICM/JLl0NqZSW5CHyL+
44
github.com/Masterminds/semver/v3 v3.3.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
55
github.com/Masterminds/semver/v3 v3.3.1 h1:QtNSWtVZ3nBfk8mAOu/B6v7FMJ+NHTIgUPi7rj+4nv4=
66
github.com/Masterminds/semver/v3 v3.3.1/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
7+
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
8+
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
79
github.com/pmoscode/go-common v0.10.0 h1:yrllglzwdbozsB2NB7DNTKqrulaLkig9t50+/yZYOf4=
810
github.com/pmoscode/go-common v0.10.0/go.mod h1:Me/Dh7F7F1fnUeBpmAK0qlZJ4LkVgFMOvznn7g8zcbY=
911
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

0 commit comments

Comments
 (0)