File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
lib/kubernetes_template_rendering Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,14 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
4
4
5
5
Note: this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 0.2.1 ] - 2024-06-17
7
+ ## [ 0.2.2 ] - 2024-06-17
8
8
### Fixed
9
9
- Fixed a bug allowing child process errors to be ignored while rendering.
10
10
11
+ ## [ 0.2.1] - 2024-11-22
12
+ ### Fixed
13
+ - Fixed a bug where attempting to use ` activesupport ` 8 was causing installation issues
14
+
11
15
## [ 0.2.0] - 2024-05-06
12
16
### Added
13
17
- Added support for passing ` --source-repo ` flag into command line so that the rendered manifest comments can include a link to the source repository.
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- kubernetes_template_rendering (0.2.1 )
5
- activesupport
4
+ kubernetes_template_rendering (0.2.2 )
5
+ activesupport ( < 8 )
6
6
invoca-utils
7
7
jsonnet
8
8
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
34
34
spec . executables = spec . files . grep ( %r{\A exe/} ) { |f | File . basename ( f ) }
35
35
spec . require_paths = [ "lib" ]
36
36
37
- spec . add_dependency "activesupport"
37
+ spec . add_dependency "activesupport" , "< 8"
38
38
spec . add_dependency "jsonnet"
39
39
spec . add_dependency "invoca-utils"
40
40
end
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module KubernetesTemplateRendering
4
- VERSION = "0.2.1 "
4
+ VERSION = "0.2.2 "
5
5
end
You can’t perform that action at this time.
0 commit comments