Skip to content

Removed "Early Access" and "Beta" notices. #90

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

Merged
merged 3 commits into from
Apr 2, 2018
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 @@ -5,7 +5,7 @@
</h1>

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

## Setup

Expand Down
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ browserHistory.listen(function (location) {

window.setTitle = function (newTitle) {
const title = document.querySelector('title');
title.textContent = 'API v4 Documentation | Linode Developers';
title.textContent = 'API Documentation | Linode Developers';

if (newTitle) {
title.textContent = `${newTitle} | ${title.textContent}`;
Expand Down
6 changes: 1 addition & 5 deletions src/getting_started/changelogs/Changelogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ export default function Authentication() {
<section className="Article">
<h1>Changelogs</h1>
<section>
<p>
The API V4 is currently in beta. There will be regular releases that may
introduce breaking changes. The Developers site contains all changes to
API V4 since 2017-09-18. Please check here regularly for updates.
</p>
<p>As releases are made Changelogs will be published here.</p>
</section>
<section>
<h2>2018-04-02</h2>
Expand Down
4 changes: 2 additions & 2 deletions src/getting_started/guides/python/Introduction.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function Introduction(props) {
</header>
<section>
<p>
With the release of API V4, Linode has also released an official Python library.
With the release of API, Linode has also released an official Python library.
This guide is a simple introduction to working with the Python library.
The official Linode Python library is open source on&nbsp;
<ExternalLink to="http://github.com/Linode/python-linode-api">
Expand All @@ -43,7 +43,7 @@ export default function Introduction(props) {
<section>
<h2>Connecting to the API</h2>
<p>
The Python library connects to the Linode API V4 using the LinodeClient class,
The Python library connects to the Linode API using the LinodeClient class,
which expects an OAuth Token in his constructor.
</p>
<i>All example code in this guide is executed in a Python shell.</i>
Expand Down
12 changes: 2 additions & 10 deletions src/getting_started/intros/Introduction.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,8 @@ export default function Introduction() {
<h1>Introduction</h1>
<section>
<br />
<div className="alert alert-danger" role="alert">
This API is an <b>Early Access</b> release. As such, we will be making regular revisions,
some of which will contain <b>breaking changes. </b>
<Link to={`/${API_VERSION}/changelogs`}>
Please review the changelogs
</Link> and <ExternalLink to="https://welcome.linode.com/api">
subscribe to the mailing list</ExternalLink> for updates on changes and releases.
</div>
<p>
The Linode APIv4 is an HTTP service that follows (to a large extent)&nbsp;
The Linode API is an HTTP service that follows (to a large extent)&nbsp;
<ExternalLink to="https://en.wikipedia.org/wiki/Representational_state_transfer">REST</ExternalLink>
&nbsp;style. Resources like Linodes have predictable URLs that use standard
HTTP methods to manipulate and return standard HTTP status codes to tell you how
Expand All @@ -35,7 +27,7 @@ export default function Introduction() {
</Link> to get started making API calls using a Personal Access Token (PAT).
</div>
<p>
All APIv4 endpoints are located at:
All API endpoints are located at:
</p>
<section>
<Code example={`${API_ROOT}/${API_VERSION}/*`} name="bash" noclipboard />
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default class Layout extends Component {
</span>
</Link>
</div>
<span className="MainHeader-title">Linode API v4 Documentation (Early Access)</span>
<span className="MainHeader-title">Linode API Documentation</span>
<button
className="ToggleNav navbar-toggler navbar-toggler-right collapsed"
type="button"
Expand Down