Skip to content

Commit 2d5b4ed

Browse files
Merge pull request #225 from puppetlabs/MAINT-Release_prep
(MAINT) Release prep v3.2.0
2 parents 21b86ca + afaecdd commit 2d5b4ed

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [v3.2.0](https://github.com/puppetlabs/puppetlabs-scheduled_task/tree/v3.2.0) - 2023-03-23
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-scheduled_task/compare/v3.1.1...v3.2.0)
8+
9+
### Added
10+
11+
- Control scheduled task description field [#220](https://github.com/puppetlabs/puppetlabs-scheduled_task/pull/220) ([dwjvaughan](https://github.com/dwjvaughan))
12+
513
## [v3.1.1](https://github.com/puppetlabs/puppetlabs-scheduled_task/tree/v3.1.1) (2022-10-03)
614

715
[Full Changelog](https://github.com/puppetlabs/puppetlabs-scheduled_task/compare/v3.1.0...v3.1.1)

examples/create_task_v1.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
schedule => daily,
77
start_time => '12:00',
88
},
9-
provider => 'taskscheduler_api2'
9+
provider => 'taskscheduler_api2',
1010
}

examples/delete_task_v1.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
scheduled_task { 'Run Notepad':
22
ensure => absent,
3-
provider => 'taskscheduler_api2'
3+
provider => 'taskscheduler_api2',
44
}

lib/puppet/type/scheduled_task.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
end
6767

6868
newproperty(:description) do
69-
desc "The description of the scheduled task."
69+
desc 'The description of the scheduled task.'
7070
end
7171

7272
newproperty(:user) do

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-scheduled_task",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"author": "puppetlabs",
55
"summary": "Manage scheduled tasks for Windows Server 2012 and newer operating systems.",
66
"license": "Apache-2.0",

spec/acceptance/should_create_task_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
let(:password) { password }
1111
let(:password2) { password2 }
1212
let!(:taskname) { "pl#{rand(999_999).to_i}" }
13-
let(:description) { "foobar" }
13+
let(:description) { 'foobar' }
1414

1515
after(:all) do
1616
remove_test_user(username)

0 commit comments

Comments
 (0)