diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 3fee6676..9c82ec45 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -6,8 +6,6 @@ jobs: strategy: matrix: ruby: - - '2.7.x' - - '3.0.x' - '3.1.x' active_support: - 'active_support_6.0.x' diff --git a/History.md b/History.md index 2b7db134..04338cc4 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,10 @@ +## 0.17.0 + + * Add various Ticket endpoints (#create!, #update!, #find) + * Add TicketProperties#create! + * Add Task#create! and Task#find + * BREAKING CHANGE : requires ruby 3.1+, as we're not testing against olders versions + ## 0.16.0 * Added the possibility to add custom properties to `Meeting#find` and `Meeting#find_by_contact`. #17 diff --git a/hubspot-api-ruby.gemspec b/hubspot-api-ruby.gemspec index 5998b0ee..32f4db91 100644 --- a/hubspot-api-ruby.gemspec +++ b/hubspot-api-ruby.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "hubspot-api-ruby" - s.version = "0.16.0" + s.version = "0.17.0" s.require_paths = ["lib"] s.authors = ["Jonathan"] s.email = ["jonathan@hoggo.com"] @@ -15,7 +15,7 @@ Gem::Specification.new do |s| "changelog_uri" => "https://github.com/captaincontrat/hubspot-api-ruby/blob/master/History.md" } - s.required_ruby_version = ">= 2.7" + s.required_ruby_version = ">= 3.1" # Add runtime dependencies here s.add_runtime_dependency "activesupport", ">= 4.2.2"