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

Commit c0058f2

Browse files
author
Ladislav Prskavec
authored
Merge pull request #197 from apiaryio/abtris/release-0.15
feat: release 0.15
2 parents f544580 + c249668 commit c0058f2

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ Gemfile.lock
3737

3838
# testing
3939
spec/fixtures/test.html
40+
rules.json
41+
functions.js
4042

4143
# idea ide
4244
/.idea
4345

4446
# netbeans IDE
45-
/nbproject
47+
/nbproject

CHANGELOG.md

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

3+
## 0.15.0
4+
* fix: change domain from docs.<subdomain>.apiary.io to <subdomain>.docs.apiary.io
5+
* 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)
36
## 0.14.1
47
* fix: [update rack to 2.1.4](https://github.com/advisories/GHSA-j6w9-fv6q-3q52)
58

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Apiary CLI Client
88
## Description
99

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

1515

16-
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.
16+
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.
1717

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

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

4747

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

apiary.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
1414

1515
gem.description = 'Apiary.io CLI'
1616
gem.summary = 'Apiary.io CLI'
17-
gem.homepage = 'http://apiary.io'
17+
gem.homepage = 'https://apiary.io'
1818
gem.license = 'MIT'
1919

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

2626
gem.add_runtime_dependency 'rest-client', '~> 2.0'
27-
gem.add_runtime_dependency 'rack', '>= 2.1.4'
27+
gem.add_runtime_dependency 'rack', '>= 2.2.3'
2828
gem.add_runtime_dependency 'thor', '~> 0.20.3'
29-
gem.add_runtime_dependency 'json', '~> 2.1'
29+
gem.add_runtime_dependency 'json', '>= 2.3.0'
3030
gem.add_runtime_dependency 'launchy', '~> 2.4'
3131
gem.add_runtime_dependency 'listen', '~> 3.0'
3232

lib/apiary/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Apiary
2-
VERSION = '0.14.1'.freeze
2+
VERSION = '0.15.0'.freeze
33
end

0 commit comments

Comments
 (0)