Skip to content

Commit

Permalink
14.11.1 (#402)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjayakar authored Jan 10, 2022
1 parent 9eb9468 commit 2a5a42d
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@
.#*
.env
.rakeTasks
docs
docs
/vendor/
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
See full changelog for the OpenAPI schema (OAS) [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md).

# 14.11.1
- Added a release step to the `Makefile` to purge previously released version of plaid-ruby in the current release.

# 14.11.0
- Updating to OAS 2020-09-14_1.61.0

Expand Down
14 changes: 9 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
plaid (14.11.0)
plaid (14.11.1)
faraday (~> 1.0, >= 1.0.1)

GEM
Expand All @@ -10,25 +10,29 @@ GEM
ast (2.4.1)
diff-lcs (1.4.4)
dotenv (2.7.6)
faraday (1.8.0)
faraday (1.9.3)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
faraday-httpclient (~> 1.0.1)
faraday-httpclient (~> 1.0)
faraday-multipart (~> 1.0)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.1)
faraday-net_http_persistent (~> 1.0)
faraday-patron (~> 1.0)
faraday-rack (~> 1.0)
multipart-post (>= 1.2, < 3)
faraday-retry (~> 1.0)
ruby2_keywords (>= 0.0.4)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-excon (1.1.0)
faraday-httpclient (1.0.1)
faraday-multipart (1.0.3)
multipart-post (>= 1.2, < 3)
faraday-net_http (1.0.1)
faraday-net_http_persistent (1.2.0)
faraday-patron (1.0.0)
faraday-rack (1.0.0)
faraday-retry (1.0.3)
minitest (5.14.2)
minitest-around (0.5.0)
minitest (~> 5.0)
Expand Down
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# Ruby embeds the version in the generator where as others don't so it's not possible to cat for it.
RUBY_PACKAGE_VERSION=14.11.0
RUBY_PACKAGE_VERSION=14.11.1

.PHONY: release
release:
# Remove previously released versions of plaid-ruby
rm -rf pkg
# Release
bundle config set --local path 'vendor/bundle' && \
bundle && \
bundle exec rake release
2 changes: 1 addition & 1 deletion PUBLISH.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Publish:

1. `git checkout master` and `git pull` (makes sure your `HEAD` is up-to-date).
2. Check that tests are passing on latest `master` build and (optional) `docker build -t plaid-ruby . && docker run -e PLAID_RUBY_CLIENT_ID=$(CLIENT_ID) -e PLAID_RUBY_SECRET=$(SECRET) plaid-ruby)` run tests locally.
3. `bundle exec rake release` (builds the gem, creates a tag, pushes the gem to RubyGems and tag to GitHub). **NOTE:** if this step hangs indefinitely, you need to set your MFA settings to "UI Only" [here](https://rubygems.org/profile/edit).
3. Run `make release` which runs `bundle exec rake release` (builds the gem, creates a tag, pushes the gem to RubyGems and tag to GitHub). **NOTE:** if this step hangs indefinitely, you need to set your MFA settings to "UI Only" [here](https://rubygems.org/profile/edit).

[1]: https://rubygems.org/
[2]: https://rubygems.org/gems/plaid
2 changes: 1 addition & 1 deletion lib/plaid/api_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ApiClient
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
def initialize(config = Configuration.default)
@config = config
@user_agent = "Plaid Ruby v14.11.0"
@user_agent = "Plaid Ruby v14.11.1"
@default_headers = {
'Content-Type' => 'application/json',
'User-Agent' => @user_agent,
Expand Down
2 changes: 1 addition & 1 deletion lib/plaid/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
=end

module Plaid
VERSION = '14.11.0'
VERSION = '14.11.1'
end

0 comments on commit 2a5a42d

Please sign in to comment.