Skip to content

Commit b47e576

Browse files
committed
Publishing v0.1.2
1 parent 697a89f commit b47e576

File tree

5 files changed

+30
-6
lines changed

5 files changed

+30
-6
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Yarn CI
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [ main ]
99
pull_request:
10-
branches: [ master ]
10+
branches: [ main ]
1111

1212
jobs:
1313
build:

.github/workflows/publish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
# Setup .npmrc file to publish to npm
13+
- uses: actions/setup-node@v2
14+
with:
15+
node-version: '12.x'
16+
registry-url: 'https://registry.npmjs.org'
17+
- run: npm install
18+
- run: npm publish
19+
env:
20+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

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

3+
## 0.1.2 (August 18, 2021)
4+
5+
* Updated dependencies
6+
37
## 0.1.1 (April 12, 2020)
48

59
* Addressing IE11 compatibility issues

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ possible.
55
## Pull Requests
66
We actively welcome your pull requests.
77

8-
1. Fork the repo and create your branch from `master`.
8+
1. Fork the repo and create your branch from `main`.
99
2. If you've added code that should be tested, add tests.
1010
3. If you've changed APIs, update the documentation.
1111
4. Ensure the test suite passes.
@@ -26,5 +26,5 @@ disclosure of security bugs. In those cases, please go through the process
2626
outlined on that page and do not file a public issue.
2727

2828
## License
29-
By contributing to Ristretto255.js, you agree that your contributions will be
29+
By contributing to Ristretto255.js, you agree that your contributions will be
3030
licensed under the LICENSE file in the root directory of this source tree.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "ristretto255",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Supports the ristretto255 group operations on top of TweetNaCl.js",
55
"main": "dist/ristretto255.min.js",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/calibra/ristretto255-js.git"
8+
"url": "https://github.com/novifinancial/ristretto255-js.git"
99
},
1010
"author": "Valeria Nikolaenko <[email protected]>",
1111
"license": "MIT",

0 commit comments

Comments
 (0)