Skip to content
This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Commit 040d233

Browse files
authored
Release v0.1.16 rc3 (#42)
* fix(gh-pages): change to use different process for publishing gh-pages * docs(README): update version * docs(release): update with instructions to update docs * v0.1.16-rc3
1 parent dd4f8cb commit 040d233

File tree

5 files changed

+153
-283
lines changed

5 files changed

+153
-283
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ aliases:
1212
command: yarn test
1313
- &github_pages
1414
name: Deploy GitHub pages
15-
command: yarn gh-pages-deploy
15+
command: |
16+
yarn docs
17+
git config user.email "${GITHUB_EMAIL}"
18+
git config user.name "${GITHUB_USER}"
19+
yarn gh-pages --dist docs
1620
1721
version: 2
1822
jobs:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Paperspace API (v0.1.16-rc2)
1+
# Paperspace API (v0.1.16-rc3)
22

33
![image](https://user-images.githubusercontent.com/585865/27562775-26b8acc6-5a9c-11e7-8270-2b80ca895bc5.png)
44

developers.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ $ git pull --rebase
9696
$ git checkout -b release_v<new-version>
9797
```
9898

99+
Add a new section in the [releasenotes.md](releasenotes.md) document and change the version in the head of [this](#note-for-developers).
100+
99101
After this run `yarn version` (pro-tip: use `--patch`, `--minor` or `--major` flags to automatically increment the version) and type in the new version:
100102
```
101103
$ yarn version

package.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "paperspace-node",
3-
"version": "0.1.16-rc2",
3+
"version": "0.1.16-rc3",
44
"description": "Paperspace API for node",
55
"main": "index.js",
66
"repository": "https://github.com/Paperspace/paperspace-node",
@@ -20,13 +20,6 @@
2020
"node": ">=8.9.3",
2121
"yarn": ">=1.3.2"
2222
},
23-
"gh-pages-deploy": {
24-
"staticpath": "docs",
25-
"prep": [
26-
"docs"
27-
],
28-
"noprompt": true
29-
},
3023
"dependencies": {
3124
"ajv": "^6.4.0",
3225
"archiver": "^2.1.0",
@@ -57,7 +50,7 @@
5750
"devDependencies": {
5851
"docdash": "^0.4.0",
5952
"eslint": "4.12.1",
60-
"gh-pages-deploy": "^0.5.1",
53+
"gh-pages": "^2.0.1",
6154
"jsdoc": "^3.5.5",
6255
"marked": "^0.3.9",
6356
"prettier": "^1.3.1",

0 commit comments

Comments
 (0)