summaryrefslogtreecommitdiff
path: root/knife/lib/chef/knife/version.rb
blob: cf72cb383952f680d5b62fa40efd717c5a853cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12

class Chef
  class Knife
    KNIFE_ROOT = File.expand_path("../..", __dir__)
    # 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