summaryrefslogtreecommitdiff
path: root/knife/lib/chef/knife/version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'knife/lib/chef/knife/version.rb')
-rw-r--r--knife/lib/chef/knife/version.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/knife/lib/chef/knife/version.rb b/knife/lib/chef/knife/version.rb
index 11accf719f..cf72cb3839 100644
--- a/knife/lib/chef/knife/version.rb
+++ b/knife/lib/chef/knife/version.rb
@@ -2,8 +2,10 @@
class Chef
class Knife
KNIFE_ROOT = File.expand_path("../..", __dir__)
- # MPTD - Chef::VersionString - move into ChefUtil?
- VERSION = "17.0.92".freeze
+ # MPTD - under chef this a Chef::VersionString, but we can't use that here
+ # without making a circular dep. We should probalby move VersionString to into ChefUtil?
+ # MPTD - this should be getting auto-updated
+ VERSION = "17.0.132".freeze
end
end