Skip to content

Commit

Permalink
Bump version to 0.1.1 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmmatos authored Nov 10, 2022
1 parent f0aca24 commit d81e4d8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,12 @@ This file is used to list changes made in each version of the chef-falcon cookbo
Initial release.

- Linux support with API installation method

## 0.1.1

**Full Changelog**: https://github.com/CrowdStrike/chef-falcon/compare/0.1.0...0.1.1

- Fix cookbook quality issues by @carlosmmatos in https://github.com/CrowdStrike/chef-falcon/pull/18
- Added badge to README for cookbook in supermarket by @carlosmmatos in https://github.com/CrowdStrike/chef-falcon/pull/19
- Update readme to include full links by @carlosmmatos in https://github.com/CrowdStrike/chef-falcon/pull/20
- Integration Testing by @carlosmmatos in https://github.com/CrowdStrike/chef-falcon/pull/21
2 changes: 1 addition & 1 deletion libraries/falconapi.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def initialize(falcon_cloud: nil, bearer_token: nil, client_id: nil, client_secr
end
@client_id = client_id
@client_secret = client_secret
@version = '0.1.0'
@version = '0.1.1'
end

# Returns the version of the sensor installer for the given policy and platform name.
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
maintainer_email '[email protected]'
license 'GPL-3.0'
description 'Installs/Configures Falcon sensor'
version '0.1.0'
version '0.1.1'
chef_version '>= 16.0'

# The `issues_url` points to the location where issues for this cookbook are
Expand Down
2 changes: 1 addition & 1 deletion resources/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def insync?(new_resource, desired_version)
remote_file 'falcon' do
path sensor_info['file_path']
source sensor_info['url']
headers({ 'Authorization' => "Bearer #{sensor_info['bearer_token']}", 'User-Agent' => 'crowdstrike-chef/0.1.0' })
headers({ 'Authorization' => "Bearer #{sensor_info['bearer_token']}", 'User-Agent' => 'crowdstrike-chef/0.1.1' })
action :create
end
end
Expand Down
2 changes: 1 addition & 1 deletion test/cookbooks/test/metadata.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name 'test'
version '0.1.0'
version '0.1.1'
chef_version '>= 16.0'

depends 'falcon'

0 comments on commit d81e4d8

Please sign in to comment.