Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #197 from apiaryio/abtris/release-0.15
Browse files Browse the repository at this point in the history
feat: release 0.15
  • Loading branch information
Ladislav Prskavec authored Feb 25, 2021
2 parents f544580 + c249668 commit c0058f2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@ Gemfile.lock

# testing
spec/fixtures/test.html
rules.json
functions.js

# idea ide
/.idea

# netbeans IDE
/nbproject
/nbproject
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.15.0
* fix: change domain from docs.<subdomain>.apiary.io to <subdomain>.docs.apiary.io
* fix(security): [CVE-2020-10663](https://www.ruby-lang.org/en/news/2020/03/19/json-dos-cve-2020-10663/) and [CVE-2020-8184](https://nvd.nist.gov/vuln/detail/CVE-2020-8184)
## 0.14.1
* fix: [update rack to 2.1.4](https://github.com/advisories/GHSA-j6w9-fv6q-3q52)

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Apiary CLI Client
## Description

The Apiary CLI Client gem is a command line tool for developing and previewing
[API Blueprint](http://apiblueprint.org) documents locally. It can also be
[API Blueprint](https://apiblueprint.org) documents locally. It can also be
used for pushing updated documents to and fetching existing documents from
[Apiary](http://apiary.io).
[Apiary](https://apiary.io).


Please see the `apiary help` command and the [full documentation](http://client.apiary.io) for an in-depth look in how to use this tool.
Please see the `apiary help` command and the [full documentation](https://client.apiary.io) for an in-depth look in how to use this tool.

For instructions on making your own changes, see [Hacking Apiary CLI Client](#hacking-apiary-cli-client), below.

Expand Down Expand Up @@ -45,7 +45,7 @@ docker build -t "apiaryio/client" .
*Required only for publish and fetch commands.*


1. Make sure you are a registered user of [Apiary](http://apiary.io).
1. Make sure you are a registered user of [Apiary](https://apiary.io).
2. Retrieve API key (token) on [this page](https://login.apiary.io/tokens).
3. Export it as an environment variable:

Expand Down
6 changes: 3 additions & 3 deletions apiary.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |gem|

gem.description = 'Apiary.io CLI'
gem.summary = 'Apiary.io CLI'
gem.homepage = 'http://apiary.io'
gem.homepage = 'https://apiary.io'
gem.license = 'MIT'

gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
Expand All @@ -24,9 +24,9 @@ Gem::Specification.new do |gem|
gem.require_paths = ['lib']

gem.add_runtime_dependency 'rest-client', '~> 2.0'
gem.add_runtime_dependency 'rack', '>= 2.1.4'
gem.add_runtime_dependency 'rack', '>= 2.2.3'
gem.add_runtime_dependency 'thor', '~> 0.20.3'
gem.add_runtime_dependency 'json', '~> 2.1'
gem.add_runtime_dependency 'json', '>= 2.3.0'
gem.add_runtime_dependency 'launchy', '~> 2.4'
gem.add_runtime_dependency 'listen', '~> 3.0'

Expand Down
2 changes: 1 addition & 1 deletion lib/apiary/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Apiary
VERSION = '0.14.1'.freeze
VERSION = '0.15.0'.freeze
end

0 comments on commit c0058f2

Please sign in to comment.