Skip to content

Commit

Permalink
Merge pull request #3 from tonlabs/0.2.0-rc
Browse files Browse the repository at this point in the history
Version 0.2.0
  • Loading branch information
d3p authored Feb 26, 2021
2 parents 6aa0fa3 + 0b26b4c commit 60f4696
Show file tree
Hide file tree
Showing 18 changed files with 1,191 additions and 121 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: npm publish

on:
release:
types: [published]

jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,7 @@ dist
/.idea/
/package-lock.json
.vscode/launch.json
examples/sol/package-lock.json
examples/sol/Hello.abi.json
examples/sol/Hello.tvc
README.html
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@

All notable changes to this project will be documented in this file.

## 0.1.7 Feb 18, 2021
## [0.2.0] - 2021-02-24

### Added

- TONOS-SE Controller.

## [0.1.7] – 2021-02-18

### New

- Solidity functionality added:
- Solidity functionality added:
- Create a hello world contract in one click
- Install compiler in the background upon the first request
- Compile and link a contract in one click
- Get solidity compiler version
- Get solidity compiler version
- Download the latest compiler
- SDK functionality added:
- Create a Node.js project with the latest SDK dependencies and index.js script with main client object creation
Loading

0 comments on commit 60f4696

Please sign in to comment.