Sha256: 6c16811b5efdca59a2d742d7f648912e01b4d8cac873a2d638fcd18061e45b66
Contents?: true
Size: 644 Bytes
Versions: 20
Compression:
Stored size: 644 Bytes
Contents
# This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # frozen_string_literal: true require_relative 'helpers/version_bump' namespace :newrelic do namespace :version do desc 'Returns the current version' task :current do puts "#{NewRelic::VERSION::STRING}" end desc 'Update version file and changelog to next version' task :bump, [:format] => [] do |t, args| new_version = VersionBump.update_version VersionBump.update_changelog(new_version) puts "New version: #{new_version}" end end end
Version data entries
20 entries across 20 versions & 1 rubygems