diff --git a/CHANGELOG.md b/CHANGELOG.md index eb68ec8..6c22fe9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ Change history for `choria/mcollective_agent_service` +## 4.1.0 + +Released 2024-08-26 + + * Support latest ruby and use new module layout + ## 4.0.1 Released 2018-04-20 diff --git a/Rakefile b/Rakefile index 582f9d3..dcfd744 100644 --- a/Rakefile +++ b/Rakefile @@ -29,11 +29,11 @@ task :prep_version do abort("Please specify VERSION") unless ENV["VERSION"] Rake::FileList["**/*.ddl"].each do |file| - sh 'sed -i "" -re \'s/([\t ]+:version[\t ]+=>[\t ]+").+/\\1%s",/\' %s' % [ENV["VERSION"], file] + sh 'sed -i"" -re \'s/([\t ]+:version[\t ]+=>[\t ]+").+/\\1%s",/\' %s' % [ENV["VERSION"], file] end Rake::FileList["**/*.json"].each do |file| - sh 'sed -i "" -re \'s/("version": ").+/\\1%s",/\' %s' % [ENV["VERSION"], file] + sh 'sed -i"" -re \'s/("version": ").+/\\1%s",/\' %s' % [ENV["VERSION"], file] end changelog = File.read("CHANGELOG.md") diff --git a/files/mcollective/agent/service.ddl b/files/mcollective/agent/service.ddl index 61fd5ae..ec102bd 100644 --- a/files/mcollective/agent/service.ddl +++ b/files/mcollective/agent/service.ddl @@ -2,7 +2,7 @@ metadata :name => "service", :description => "Manages Operating System Services", :author => "R.I.Pienaar ", :license => "Apache-2.0", - :version => "4.0.1", + :version => "4.1.0", :url => "https://github.com/choria-plugins/service-agent", :timeout => 60 diff --git a/files/mcollective/agent/service.json b/files/mcollective/agent/service.json index 4303078..f7769b6 100644 --- a/files/mcollective/agent/service.json +++ b/files/mcollective/agent/service.json @@ -5,7 +5,7 @@ "description": "Manages Operating System Services", "author": "R.I.Pienaar ", "license": "Apache-2.0", - "version": "4.0.1", + "version": "4.1.0", "url": "https://github.com/choria-plugins/service-agent", "timeout": 60 }, diff --git a/files/mcollective/data/service_data.ddl b/files/mcollective/data/service_data.ddl index 087ba03..fc0e29a 100644 --- a/files/mcollective/data/service_data.ddl +++ b/files/mcollective/data/service_data.ddl @@ -2,7 +2,7 @@ metadata :name => "service", :description => "Checks the status of a service", :author => "R.I.Pienaar ", :license => "Apache-2.0", - :version => "4.0.1", + :version => "4.1.0", :url => "https://github.com/choria-plugins/service-agent", :timeout => 3 diff --git a/files/mcollective/validator/service_name.ddl b/files/mcollective/validator/service_name.ddl index f3d6643..4a2cddb 100644 --- a/files/mcollective/validator/service_name.ddl +++ b/files/mcollective/validator/service_name.ddl @@ -2,7 +2,7 @@ metadata :name => "service_name", :description => "Validates that a string is a service name", :author => "R.I.Pienaar ", :license => "Apache-2.0", - :version => "4.0.1", + :version => "4.1.0", :url => "https://github.com/choria-plugins/service-agent", :timeout => 1 diff --git a/metadata.json b/metadata.json index b40b946..2d2adb5 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "choria-mcollective_agent_service", - "version": "4.0.1", + "version": "4.1.0", "author": "R.I.Pienaar ", "license": "Apache-2.0", "summary": "Manages Operating System Services",