summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile20
1 files changed, 1 insertions, 19 deletions
diff --git a/Rakefile b/Rakefile
index 311639230b..34d62788ea 100644
--- a/Rakefile
+++ b/Rakefile
@@ -29,30 +29,12 @@ require_relative "tasks/cbgb"
require_relative "tasks/dependencies"
require_relative "tasks/changelog"
require_relative "tasks/announce"
+require_relative "tasks/version"
ChefConfig::PackageTask.new(File.expand_path("..", __FILE__), "Chef", "chef") do |package|
package.component_paths = ["chef-config"]
package.generate_version_class = true
end
-# Add conservative dependency update to version:bump (which was created by PackageTask)
-task "version:bump" => %w{version:bump_patch version:update}
-task "version:bump" => %w{version:bump_patch version:update}
-
-task "version:bump_minor" do
- Rake::Task["changelog:archive"].invoke
- maj, min, _build = Chef::VERSION.split(".")
- File.open("VERSION", "w+") { |f| f.write("#{maj}.#{min.to_i + 1}.0") }
- Rake::Task["version"].invoke
- Rake::Task["bundle:install"].invoke
-end
-
-task "version:bump_major" do
- Rake::Task["changelog:archive"].invoke
- maj, _min, _build = Chef::VERSION.split(".")
- File.open("VERSION", "w+") { |f| f.write("#{maj.to_i + 1}.0.0") }
- Rake::Task["version"].invoke
- Rake::Task["bundle:install"].invoke
-end
task :pedant, :chef_zero_spec