Skip to content

Commit b7a4c63

Browse files
committed
version 0.4.11
1 parent 1533e5d commit b7a4c63

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [0.4.11] - 2025-10-27
4+
5+
### Bugfixes
6+
- Avoids a crash in error handling when ActionKit returns a response with a non-object "errors" value
7+
38
## [0.4.10] - 2024-01-10
49

510
### Added

action_kit_rest.gemspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
# DO NOT EDIT THIS FILE DIRECTLY
33
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
44
# -*- encoding: utf-8 -*-
5-
# stub: action_kit_rest 0.4.10 ruby lib
5+
# stub: action_kit_rest 0.4.11 ruby lib
66

77
Gem::Specification.new do |s|
88
s.name = "action_kit_rest".freeze
9-
s.version = "0.4.10"
9+
s.version = "0.4.11"
1010

1111
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
1212
s.require_paths = ["lib".freeze]
1313
s.authors = ["Nathan Woodhull".freeze, "Diego Marcet".freeze, "Grey Moore".freeze]
14-
s.date = "2024-01-10"
14+
s.date = "2025-10-27"
1515
s.description = "Gem for interacting with the ActionKit API".freeze
1616
s.email = "[email protected]".freeze
1717
s.extra_rdoc_files = [
@@ -25,6 +25,7 @@ Gem::Specification.new do |s|
2525
".rubocop.yml",
2626
".ruby-gemset",
2727
".ruby-version",
28+
"CHANGELOG.md",
2829
"Gemfile",
2930
"LICENSE.txt",
3031
"README.md",
@@ -91,7 +92,7 @@ Gem::Specification.new do |s|
9192
]
9293
s.homepage = "http://github.com/controlshift/action_kit_rest".freeze
9394
s.licenses = ["MIT".freeze]
94-
s.rubygems_version = "3.4.19".freeze
95+
s.rubygems_version = "3.4.10".freeze
9596
s.summary = "A wrapper for the ActionKit REST API".freeze
9697

9798
s.specification_version = 4

lib/action_kit_rest/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module ActionKitRest
44
module VERSION
55
MAJOR = 0
66
MINOR = 4
7-
PATCH = 10
7+
PATCH = 11
88
BUILD = nil
99

1010
STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')

0 commit comments

Comments
 (0)