Skip to content

Commit d8054d7

Browse files
authored
Merge pull request #90 from Dorthu/remove-early-access-beta
Removed "Early Access" and "Beta" notices.
2 parents 9b7566d + e0fb84b commit d8054d7

File tree

6 files changed

+8
-20
lines changed

6 files changed

+8
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</h1>
66

77
This is the new Linode developers site. It provides documentation to complement the APIv4.
8-
Currently this software is *early-access* and is available at [developers.linode.com](https://developers.linode.com).
8+
This documentation can be viewed at [developers.linode.com](https://developers.linode.com).
99

1010
## Setup
1111

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ browserHistory.listen(function (location) {
148148

149149
window.setTitle = function (newTitle) {
150150
const title = document.querySelector('title');
151-
title.textContent = 'API v4 Documentation | Linode Developers';
151+
title.textContent = 'API Documentation | Linode Developers';
152152

153153
if (newTitle) {
154154
title.textContent = `${newTitle} | ${title.textContent}`;

src/getting_started/changelogs/Changelogs.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ export default function Authentication() {
88
<section className="Article">
99
<h1>Changelogs</h1>
1010
<section>
11-
<p>
12-
The API V4 is currently in beta. There will be regular releases that may
13-
introduce breaking changes. The Developers site contains all changes to
14-
API V4 since 2017-09-18. Please check here regularly for updates.
15-
</p>
11+
<p>As releases are made Changelogs will be published here.</p>
1612
</section>
1713
<section>
1814
<h2>2018-04-02</h2>

src/getting_started/guides/python/Introduction.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function Introduction(props) {
2323
</header>
2424
<section>
2525
<p>
26-
With the release of API V4, Linode has also released an official Python library.
26+
With the release of API, Linode has also released an official Python library.
2727
This guide is a simple introduction to working with the Python library.
2828
The official Linode Python library is open source on&nbsp;
2929
<ExternalLink to="http://github.com/Linode/python-linode-api">
@@ -43,7 +43,7 @@ export default function Introduction(props) {
4343
<section>
4444
<h2>Connecting to the API</h2>
4545
<p>
46-
The Python library connects to the Linode API V4 using the LinodeClient class,
46+
The Python library connects to the Linode API using the LinodeClient class,
4747
which expects an OAuth Token in his constructor.
4848
</p>
4949
<i>All example code in this guide is executed in a Python shell.</i>

src/getting_started/intros/Introduction.js

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,8 @@ export default function Introduction() {
1414
<h1>Introduction</h1>
1515
<section>
1616
<br />
17-
<div className="alert alert-danger" role="alert">
18-
This API is an <b>Early Access</b> release. As such, we will be making regular revisions,
19-
some of which will contain <b>breaking changes. </b>
20-
<Link to={`/${API_VERSION}/changelogs`}>
21-
Please review the changelogs
22-
</Link> and <ExternalLink to="https://welcome.linode.com/api">
23-
subscribe to the mailing list</ExternalLink> for updates on changes and releases.
24-
</div>
2517
<p>
26-
The Linode APIv4 is an HTTP service that follows (to a large extent)&nbsp;
18+
The Linode API is an HTTP service that follows (to a large extent)&nbsp;
2719
<ExternalLink to="https://en.wikipedia.org/wiki/Representational_state_transfer">REST</ExternalLink>
2820
&nbsp;style. Resources like Linodes have predictable URLs that use standard
2921
HTTP methods to manipulate and return standard HTTP status codes to tell you how
@@ -35,7 +27,7 @@ export default function Introduction() {
3527
</Link> to get started making API calls using a Personal Access Token (PAT).
3628
</div>
3729
<p>
38-
All APIv4 endpoints are located at:
30+
All API endpoints are located at:
3931
</p>
4032
<section>
4133
<Code example={`${API_ROOT}/${API_VERSION}/*`} name="bash" noclipboard />

src/layouts/Layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default class Layout extends Component {
4949
</span>
5050
</Link>
5151
</div>
52-
<span className="MainHeader-title">Linode API v4 Documentation (Early Access)</span>
52+
<span className="MainHeader-title">Linode API Documentation</span>
5353
<button
5454
className="ToggleNav navbar-toggler navbar-toggler-right collapsed"
5555
type="button"

0 commit comments

Comments
 (0)