# File lib/jeweler.rb, line 117
  def write_version(major, minor, patch, build, options = {})
    command = Jeweler::Commands::Version::Write.build_for(self)
    command.major = major
    command.minor = minor
    command.patch = patch
    command.build = build

    command.run
  end