Skip to content

Commit 0e8feb3

Browse files
authored
Merge pull request #238 from puppetlabs/release-prep
Release prep v4.3.0
2 parents 31a711e + 8fa598f commit 0e8feb3

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55

66
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
77

8+
## [v4.3.0](https://github.com/puppetlabs/puppet-lint/tree/v4.3.0) - 2025-03-06
9+
10+
[Full Changelog](https://github.com/puppetlabs/puppet-lint/compare/v4.2.4...v4.3.0)
11+
12+
### Added
13+
14+
- Extend puppet-lint to legacy_check yaml files [#235](https://github.com/puppetlabs/puppet-lint/pull/235) ([alex501212](https://github.com/alex501212))
15+
- Add Binary type to lexer type tokens list [#224](https://github.com/puppetlabs/puppet-lint/pull/224) ([jay7x](https://github.com/jay7x))
16+
- Add Error type to the lexer tokens (and sort them) [#216](https://github.com/puppetlabs/puppet-lint/pull/216) ([jay7x](https://github.com/jay7x))
17+
- Create a new plugin for ensuring a single space before a '=>' [#175](https://github.com/puppetlabs/puppet-lint/pull/175) ([gerases](https://github.com/gerases))
18+
19+
### Fixed
20+
21+
- add --top-scope-variables cli argument, fix #228 [#229](https://github.com/puppetlabs/puppet-lint/pull/229) ([jcharaoui](https://github.com/jcharaoui))
22+
- Fix function call name token type in function_indexes method [#198](https://github.com/puppetlabs/puppet-lint/pull/198) ([hsnodgrass](https://github.com/hsnodgrass))
23+
824
## [v4.2.4](https://github.com/puppetlabs/puppet-lint/tree/v4.2.4) - 2024-02-09
925

1026
[Full Changelog](https://github.com/puppetlabs/puppet-lint/compare/v4.2.3...v4.2.4)
@@ -68,6 +84,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6884
[Full Changelog](https://github.com/puppetlabs/puppet-lint/compare/v3.4.0...v4.0.0)
6985

7086
### Changed
87+
7188
- (CONT-811) Add Ruby 3.2 support and Remove support for Ruby 2.5 [#113](https://github.com/puppetlabs/puppet-lint/pull/113) ([GSPatton](https://github.com/GSPatton))
7289

7390
## [v3.4.0](https://github.com/puppetlabs/puppet-lint/tree/v3.4.0) - 2023-04-05
@@ -128,6 +145,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
128145
[Full Changelog](https://github.com/puppetlabs/puppet-lint/compare/2.5.2...v3.0.0)
129146

130147
### Changed
148+
131149
- (MAINT) bump ruby version [#50](https://github.com/puppetlabs/puppet-lint/pull/50) ([chelnak](https://github.com/chelnak))
132150

133151
### Added

lib/puppet-lint/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
class PuppetLint
2-
VERSION = '4.2.4'.freeze
2+
VERSION = '4.3.0'.freeze
33
end

0 commit comments

Comments
 (0)