Skip to content

Commit

Permalink
updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
wr0ngway committed Oct 24, 2023
1 parent 1914a47 commit 369118d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .app.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
org: cloudtruth
name: kubetruth
version: 1.2.3
version: 1.2.4

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
1.2.4 (10/24/2023)
------------------

* preserve cookies from api server [1914a47](../../commit/1914a47)
* allow async concurrency tuning [82b01f8](../../commit/82b01f8)
* maintenance [f78ca9f](../../commit/f78ca9f)
* fix rakefile var fetching [cad3e11](../../commit/cad3e11)
* reuse ctapi from collection to project [410d1a7](../../commit/410d1a7)
* mention substring matching for project mapping selectors [00155db](../../commit/00155db)
* remove debug statement [0ac48ce](../../commit/0ac48ce)
* project_selector doc updates (#13) [b644a1c](../../commit/b644a1c)

1.2.3 (03/16/2023)
------------------

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_var(name, env_name: name.to_s.upcase, yml_name: name.to_s.downcase.to_sy
value ||= APP[yml_name]
value ||= default

if (prompt || value.nil?) && $stdin.tty?
if (prompt || (value.nil? && required)) && $stdin.tty?
print "Enter '#{name}': "
value = $stdin.gets
end
Expand Down
6 changes: 4 additions & 2 deletions helm/kubetruth/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.2.3
version: 1.2.4



# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 1.2.3
appVersion: 1.2.4


0 comments on commit 369118d

Please sign in to comment.