Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update activesupport #31

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Quaderno-ruby is a ruby wrapper for the [Quaderno API](https://developers.quaderno.io/api).

Current version is 3.0.0 → See the changelog [here](https://github.com/quaderno/quaderno-ruby/blob/master/changelog.md).
Current version is 3.0.1 → See the changelog [here](https://github.com/quaderno/quaderno-ruby/blob/master/changelog.md).

To learn more about our API and ecosystem, check [developers.quaderno.io](https://developers.quaderno.io).

Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 3.0.1
* Security: update development dependency activesupport to 6.1.7.3

## 3.0.0
* Added support for accounts API
* Added support for addresses API
Expand Down
2 changes: 1 addition & 1 deletion lib/quaderno-ruby/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

class Quaderno
VERSION = "3.0.0"
VERSION = "3.0.1"
end
2 changes: 1 addition & 1 deletion quaderno.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
spec.extra_rdoc_files = %w(LICENSE.txt README.md)

spec.add_dependency('httparty', '~> 0.21')
spec.add_development_dependency('activesupport', '~> 4.2.0')
spec.add_development_dependency('activesupport', '~> 6.1.7.3')
spec.add_development_dependency('bundler', '~> 2.2')
spec.add_development_dependency('rake', '>= 12.3.3')
spec.add_development_dependency('rdoc', '>= 6.3.1')
Expand Down
Loading