Skip to content

Commit b72804e

Browse files
committed
prepare v0.0.9
1 parent ded1335 commit b72804e

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ All notable changes will be documented in this file.
33

44
## v0.0.9
55
- new: support the `import` directive - #8
6+
- new: experimental support for `https` imports, i.e. `import "https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC721/IERC721.sol"`. This can be disabled by setting ` » .config set resolveHttpImports false`.
67
- fix: `localhost` alias may not be available on some systems - #9
78

89
## v0.0.8

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ Oh, did you know that we automatically fetch a matching remote compiler when you
4040
* Settings are saved on exit (not safe when running concurrent shells). call `config set <key> <value>` to change settings like ganache port, ganache autostart, etc.
4141
* `$_` is a placeholder for the last known result. Feel free to use that placeholder in your scripts :)
4242
* Special commands are dot-prefixed. Everything else is evaluated as Solidity code.
43+
* `import "<path>"` assumes that `path` is relative to the current working-dir (CWD) or `{CWD}/node_modules/`. There's experimental support for HTTPs URL's. You can disable https resolving by setting ` » .config set resolveHttpImports false`.
44+
45+
```solidity
46+
» import "https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC721/IERC721.sol"
47+
```
4348

4449

4550
### Usage

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "solidity-shell",
3-
"version": "0.0.8",
3+
"version": "0.0.9",
44
"description": "",
55
"main": "src/index.js",
66
"bin": {

0 commit comments

Comments
 (0)